Skip to content

Commit ce4eab2

Browse files
committed
speed up build
1 parent 9e6b43d commit ce4eab2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build_releases.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ const gulp = 'npm run gulp';
5454
]);
5555

5656
console.log('Bundling and minifying for CDN distribution');
57-
await execCommand('npm run build:browser');
58-
await execCommand('npm run build:weapp');
57+
await Promise.all([
58+
execCommand('npm run build:browser'),
59+
execCommand('npm run build:weapp'),
60+
]);
5961
}());

0 commit comments

Comments
 (0)