Skip to content

Commit

Permalink
Replace single quotes with double quotes to get build scripts running…
Browse files Browse the repository at this point in the history
… on Windows (#946)
  • Loading branch information
tridium authored and epoberezkin committed Feb 21, 2019
1 parent c52f2e1 commit f6d25de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -22,13 +22,13 @@
"test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
"bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
"bundle-beautify": "node ./scripts/bundle.js js-beautify",
"build": "del-cli lib/dotjs/*.js '!lib/dotjs/index.js' && node scripts/compile-dots.js",
"build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
"test-karma": "karma start",
"test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
"test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser",
"test": "npm run lint && npm run build && npm run test-all",
"prepublish": "npm run build && npm run bundle",
"watch": "watch 'npm run build' ./lib/dot"
"watch": "watch \"npm run build\" ./lib/dot"
},
"nyc": {
"exclude": [
Expand Down

0 comments on commit f6d25de

Please sign in to comment.