Skip to content

Commit b177020

Browse files
damujiangrdanez
authored andcommitted
fix scripts build:umd (#235)
`yarn rollup -c` is invalid, so `dist` directory cannot be created, fix it.
1 parent 791db0a commit b177020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"create-github-release": "conventional-github-releaser -p angular",
1111
"build:commonjs": "cross-env BABEL_OUTPUT=commonjs babel src/ --out-dir lib/ --ignore **/__tests__,**/__mocks__",
1212
"build:esm": "babel src/ --out-dir esm/ --ignore **/__tests__,**/__mocks__",
13-
"build:umd": "yarn rollup -c",
13+
"build:umd": "rollup -c",
1414
"build": "npm-run-all clean:* --parallel build:*",
1515
"format": "eslint src --fix",
1616
"lint": "eslint src",

0 commit comments

Comments
 (0)