Skip to content

Commit

Permalink
Update wollok-ts v4.1.8
Browse files Browse the repository at this point in the history
 + fix game example
  • Loading branch information
PalumboN committed Oct 8, 2024
1 parent 4a1570f commit 22c6598
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
15 changes: 7 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"license": "GPL-3.0",
"scripts": {
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --parallel -r ts-node/register/transpile-only test/**/*.spec.ts",
"test:game": "http-server -o ./game/test",
"test:game": "http-server -o ./test/game",
"watch": "npm run build:lib && webpack watch --mode development",
"build:lib": "rimraf dist && tsc -p ./tsconfig.build.json",
"build": "npm run build:lib && webpack --mode production",
Expand All @@ -20,7 +20,7 @@
"p5": "^1.11.0",
"path": "^0.12.7",
"socket.io": "^4.8.0",
"wollok-ts": "^4.1.7"
"wollok-ts": "4.1.8"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.8.0",
Expand Down
4 changes: 2 additions & 2 deletions test/game/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<head>
<link rel="stylesheet" href="game.css">
<script>var process = {};</script>
<script src="../dist/web/index.js"></script>
<script src="../../dist/web/game-index.js"></script>
</head>
<body>
<main>
<div id="game" class="game"></div>
</main>
<script src="../test/test.js"></script>
<script src="./test.js"></script>
</body>
</html>

0 comments on commit 22c6598

Please sign in to comment.