From 7b54dd1b59e73f138e5199bf70f87257cd6edfd8 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 27 May 2022 23:26:58 +1000 Subject: [PATCH] Run build in parallel They use to have intra-dependencies but not the case anymore. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53b591011d..61487d21eb 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ ], "scripts": { "prepare": "husky install", - "build": "rimraf ./build; run-s build:**", + "build": "rimraf ./build; run-p build:**", "build:main": "tsc -p tsconfig.json", "build:esm": "tsc --module es2015 --target es2015 --outDir build/esm", "build:umd": "webpack --config webpack.config.js",