We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6b43d commit ce4eab2Copy full SHA for ce4eab2
build_releases.js
@@ -54,6 +54,8 @@ const gulp = 'npm run gulp';
54
]);
55
56
console.log('Bundling and minifying for CDN distribution');
57
- await execCommand('npm run build:browser');
58
- await execCommand('npm run build:weapp');
+ await Promise.all([
+ execCommand('npm run build:browser'),
59
+ execCommand('npm run build:weapp'),
60
+ ]);
61
}());
0 commit comments