Add a "build" entry to package.json's scripts

Most people use `npm build` or `yarn build` to run build scripts. This
change reflects that convention.
This commit is contained in:
CountBleck 2022-08-31 18:37:07 -07:00
parent 61fe7ffc79
commit 4ba900e120
No known key found for this signature in database

View file

@ -4,7 +4,7 @@
"description": "Proxy", "description": "Proxy",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "build": "node bundle"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",