new build script + fix draw

This commit is contained in:
Felix Roos 2022-05-17 22:45:23 +02:00
parent ed35f967b0
commit 806c8925c9
5 changed files with 12 additions and 2 deletions

View file

@ -9,7 +9,8 @@
"setup": "npm i && npm run bootstrap && cd repl && npm i",
"repl": "cd repl && npm run dev",
"osc": "cd packages/osc && npm run server",
"build": "cd repl && npm run build",
"build": "cd repl && npm run build && cd ../tutorial && npm run build",
"preview": "npx serve ./out",
"jsdoc": "jsdoc packages/ -c jsdoc.config.json",
"jsdoc-json": "jsdoc packages/ --template ./node_modules/jsdoc-json --destination doc.json -c jsdoc.config.json"
},