From 4ba900e120034f5c2da0d718465c1a7ad7b27fae Mon Sep 17 00:00:00 2001 From: CountBleck Date: Wed, 31 Aug 2022 18:37:07 -0700 Subject: [PATCH] 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 731d5e5..18f55b7 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Proxy", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "build": "node bundle" }, "author": "", "license": "ISC",