From 1dc838961f5390a5fb10f76abce0b8e41103fd70 Mon Sep 17 00:00:00 2001 From: nitowa Date: Fri, 11 Oct 2024 18:56:31 +0200 Subject: [PATCH] Add webpack to build script, npm 0.3.1 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 67531b2..c441ce4 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "rjsvm", - "version": "0.3.0", + "version": "0.3.1", "description": "", "main": "lib/src/main.js", "scripts": { "clean": "rm -rf lib", "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", "test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js", "tsc": "tsc",