Skip to content

Commit

Permalink
Use double quotes in the npm script lines for supporting windows (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
piglovesyou authored Nov 11, 2019
1 parent d738451 commit c86ffdd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,20 +186,20 @@
"fix-js": "yarn run lint-js --fix",
"fix-css": "yarn run lint-css --fix",
"fix": "yarn run fix-js && yarn run fix-css",
"codegen": "babel-node --extensions '.ts' tools/run codegen",
"codegen": "babel-node --extensions \".ts\" tools/run codegen",
"test": "tsc && jest",
"test-watch": "yarn run test --watch --notify",
"test-cover": "yarn run test --coverage",
"coverage": "yarn run test-cover && opn coverage/lcov-report/index.html",
"clean": "babel-node --extensions '.ts' tools/run clean",
"copy": "babel-node --extensions '.ts' tools/run copy",
"bundle": "babel-node --extensions '.ts' tools/run bundle",
"build": "babel-node --extensions '.ts' tools/run build",
"clean": "babel-node --extensions \".ts\" tools/run clean",
"copy": "babel-node --extensions \".ts\" tools/run copy",
"bundle": "babel-node --extensions \".ts\" tools/run bundle",
"build": "babel-node --extensions \".ts\" tools/run build",
"build-stats": "yarn run build --release --analyse",
"deploy": "babel-node --extensions '.ts' tools/run deploy",
"render": "babel-node --extensions '.ts' tools/run render",
"serve": "babel-node --extensions '.ts' tools/run runServer",
"start": "babel-node --extensions '.ts' tools/run start"
"deploy": "babel-node --extensions \".ts\" tools/run deploy",
"render": "babel-node --extensions \".ts\" tools/run render",
"serve": "babel-node --extensions \".ts\" tools/run runServer",
"start": "babel-node --extensions \".ts\" tools/run start"
},
"husky": {
"hooks": {
Expand Down

0 comments on commit c86ffdd

Please sign in to comment.