Copy wasm even on watch builds

This commit is contained in:
Kolja Lampe
2019-08-27 22:24:33 +02:00
parent d4f4f9cb2f
commit 09f6e49a22
2 changed files with 4 additions and 3 deletions

View File

@@ -129,8 +129,9 @@
},
"scripts": {
"vscode:prepublish": "cd client && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"compile": "npm run copy-wasm && tsc -b",
"watch": "npm run copy-wasm && tsc -b -w",
"copy-wasm": "cd server && npm run copy-wasm",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"lint": "tslint -p tsconfig.json",

2
server

Submodule server updated: 6a2b93e149...25c8da33a2