Skip to content

Commit ccfd506

Browse files
committed
remove prefix
1 parent c2c3e21 commit ccfd506

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build_releases.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const gulp = 'npm run gulp';
5555

5656
console.log('Bundling and minifying for CDN distribution');
5757
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'),
6060
]);
6161
}());

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@
9797
"scripts": {
9898
"build": "node build_releases.js",
9999
"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",
102102
"ci:typecheck": "node ./ci/typecheck.js",
103103
"release": "node build_releases.js && npm publish",
104104
"test": "cross-env PARSE_BUILD=node jest",

0 commit comments

Comments
 (0)