Skip to content

Commit

Permalink
Fixes for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Oct 8, 2024
1 parent 929d3fd commit 4a1570f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 2,698 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
"project": ["./tsconfig.json", "./tsconfig.test.json"]
},
"plugins": [
"@typescript-eslint",
Expand Down
2 changes: 1 addition & 1 deletion .github/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- run: npm ci
- run: npm run lint && npm test && npm run build:lib
- run: npm run lint && npm test && npm run build
# - name: Upload coverage reports to Codecov
# uses: codecov/[email protected]
# with:
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.enable": true,
"npm.packageManager": "npm"
"npm.packageManager": "npm",
"typescript.tsserver.experimental.useVsCodeWatcher": false
}
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@
"p5": "^1.11.0",
"path": "^0.12.7",
"socket.io": "^4.8.0",
"wollok-ts": "4.1.6"
"wollok-ts": "^4.1.7"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.8",
"@types/p5": "^1.4.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"chai": "^4.3.6",
"mocha": "^10.7.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.57.1",
"http-server": "^14.1.0",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
Expand Down
1 change: 0 additions & 1 deletion src/game/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface GameState {
images: Map<string, p5.Image>
sounds: Map<Id, p5.SoundFile>
currentSounds: Map<Id, GameSound>
// stop: boolean
gamePaused: boolean
audioMuted: boolean
}
Expand Down
Loading

0 comments on commit 4a1570f

Please sign in to comment.