File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const gulp = 'npm run gulp';
55
55
56
56
console . log ( 'Bundling and minifying for CDN distribution' ) ;
57
57
await Promise . all ( [
58
- execCommand ( 'npm run build:browser:umd ' ) ,
59
- execCommand ( 'npm run build:weapp:umd ' ) ,
58
+ execCommand ( 'npm run build:browser' ) ,
59
+ execCommand ( 'npm run build:weapp' ) ,
60
60
] ) ;
61
61
} ( ) ) ;
Original file line number Diff line number Diff line change 97
97
"scripts" : {
98
98
"build" : " node build_releases.js" ,
99
99
"build:types" : " tsc" ,
100
- "build:browser:umd " : " cross-env PARSE_BUILD=browser vite build --config vite.config.umd.ts" ,
101
- "build:weapp:umd " : " cross-env PARSE_BUILD=weapp vite build --config vite.config.umd.ts" ,
100
+ "build:browser" : " cross-env PARSE_BUILD=browser vite build --config vite.config.umd.ts" ,
101
+ "build:weapp" : " cross-env PARSE_BUILD=weapp vite build --config vite.config.umd.ts" ,
102
102
"ci:typecheck" : " node ./ci/typecheck.js" ,
103
103
"release" : " node build_releases.js && npm publish" ,
104
104
"test" : " cross-env PARSE_BUILD=node jest" ,
You can’t perform that action at this time.
0 commit comments