From 317cfb6b63d02ac7bd010954bb1991467b444741 Mon Sep 17 00:00:00 2001 From: Kristiyan Tachev Date: Tue, 25 Oct 2022 16:02:20 +0300 Subject: [PATCH] fix(package): added npx parcel build command with specific version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8e1652c..a8a4a13 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ }, "main": "./dist/index.js", "scripts": { - "build": "parcel build ./src/main.ts --experimental-scope-hoisting --target node", + "build": "npx parcel@1.12.3 build ./src/main.ts --experimental-scope-hoisting --target node", "build-binary": "npx gapi build --single-executable && mkdir binaries && npm run copy-binaries", "build-all": "npm run build-binary && rm -rf dist && npm run build", "test": "npx jest",