From f244ad191ea90b32d3376266bc93183eddde4b2d Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Thu, 22 Jul 2021 00:55:29 -0300 Subject: [PATCH] Change command build. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f8aec2549..10a925794 100644 --- a/package.json +++ b/package.json @@ -31,8 +31,8 @@ "scripts": { "start": "ts-node src/index.ts", "dev": "nodemon src/index.ts", - "build": "tsc | browserify lib/index.js --standalone mempoolJS > dist/mempool.js | browserify -p tinyify lib/index.js --standalone mempoolJS > dist/mempool.min.js", - "build-tsc": "tsc", + "build": "tsc", + "build-js": "tsc | browserify lib/index.js --standalone mempoolJS > dist/mempool.js | browserify -p tinyify lib/index.js --standalone mempoolJS > dist/mempool.min.js", "prepare": "npm run build", "postversion": "git push && git push --tags" },