*add barebuild script to build without the prebuild script

This commit is contained in:
Derrick Hammer 2022-07-25 20:19:58 -04:00
parent b6089446b8
commit e4f9564cd7
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@
"bundle": "node esbuild.config.js", "bundle": "node esbuild.config.js",
"package": "pkg -c pkg.json node-dist/index.js -t linux --no-bytecode --public", "package": "pkg -c pkg.json node-dist/index.js -t linux --no-bytecode --public",
"package-debug": "pkg -c pkg.json node-dist/index.js -b -t linux --no-bytecode --public", "package-debug": "pkg -c pkg.json node-dist/index.js -b -t linux --no-bytecode --public",
"build": "npm run compile && npm run prebuild && npm run bundle && npm run package" "build": "npm run compile && npm run prebuild && npm run bundle && npm run package",
"barebuild": "npm run compile && npm run bundle && npm run package"
}, },
"dependencies": { "dependencies": {
"@hyperswarm/dht": "^6.0.1", "@hyperswarm/dht": "^6.0.1",