Skip to content

Commit

Permalink
fix: 修复了cross-env丢失的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
bailicangdu committed Jul 28, 2021
1 parent 3b3bb54 commit 9cccdcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"start": "yarn start:main-react16",
"start:main-react16": "npm-run-all --parallel build:watch start-child:* main-react16",
"start:main-vue2": "npm-run-all --parallel build:watch start-child:* main-vue2",
"build:watch": "NODE_ENV='development' rollup -c -w",
"build": "NODE_ENV='production' rollup -c && npm run createtype && npm run afterbuild",
"build:watch": "cross-env NODE_ENV='development' rollup -c -w",
"build": "cross-env NODE_ENV='production' rollup -c && npm run createtype && npm run afterbuild",
"install:main-react16": "cd examples/main-react16 && yarn",
"install:main-vue2": "cd examples/main-vue2 && yarn",
"install:child-react16": "cd examples/children/react16 && yarn",
Expand Down

0 comments on commit 9cccdcd

Please sign in to comment.