Skip to content

Commit ccb70f9

Browse files
authored
Remove dependency override and update setup instructions (#3111)
1 parent 4ddb19f commit ccb70f9

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ terraform*
2424
.env.test.local
2525
.env.production.local
2626
.idea/
27-
.vscode/
28-
cadet-frontend.iml
2927

3028
npm-debug.log*
3129
.eslintcache
@@ -50,3 +48,6 @@ yarn-error.log
5048

5149
#!.yarn/cache
5250
.pnp.*
51+
52+
# We use .node-version
53+
/.tool-versions

.tool-versions

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"eslint.useFlatConfig": true,
4+
"files.insertFinalNewline": true,
5+
"liveServer.settings.file": "/index.html",
6+
"liveServer.settings.NoBrowser": true,
7+
"liveServer.settings.root": "/build"
8+
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ The Source Academy (<https://sourceacademy.org/>) is an immersive online experie
2222

2323
1. Install the version of Node.js as specified in the `.node-version` file
2424

25-
1. Install Python (known working versions: `2.7`, `3.8`, `3.9`, `3.10`) – **Note: Python `3.11` does not work**
26-
2725
1. Clone this repository and navigate to it using your command line
2826

29-
1. Install the version of `yarn` as specified in `package.json`, `packageManager`. On macos, you may need to run `corepack enable`.
27+
1. Install the version of `yarn` as specified in `package.json`, `packageManager`.
28+
29+
> We recommend using `corepack` to manage the version of `yarn`, you may simply run `corepack enable` to complete this step.
3030
3131
1. Run `yarn install` to install dependencies.
3232

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,6 @@
167167
"url": "^0.11.1",
168168
"webpack-bundle-analyzer": "^4.9.0"
169169
},
170-
"resolutions": {
171-
"gl": "^8.0.2"
172-
},
173170
"browserslist": {
174171
"production": [
175172
"Firefox ESR",

0 commit comments

Comments
 (0)