Change command build.

This commit is contained in:
Miguel Medeiros 2021-07-22 00:55:29 -03:00
parent 92bf87821a
commit f244ad191e

View File

@ -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"
},