Add webpack to build script, npm 0.3.1

This commit is contained in:
nitowa
2024-10-11 18:56:31 +02:00
parent 42d5ccc983
commit 1dc838961f
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "rjsvm", "name": "rjsvm",
"version": "0.3.0", "version": "0.3.1",
"description": "", "description": "",
"main": "lib/src/main.js", "main": "lib/src/main.js",
"scripts": { "scripts": {
"clean": "rm -rf lib", "clean": "rm -rf lib",
"start": "npm run build && npm run launch", "start": "npm run build && npm run launch",
"build": "npm run clean && npm run tsc", "build": "npm run clean && npm run tsc && npm run webpack",
"launch": "node lib/launcher.js", "launch": "node lib/launcher.js",
"test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js", "test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js",
"tsc": "tsc", "tsc": "tsc",