Skip to content

Commit

Permalink
fix(build): Fix npm test and test:watch commands for windows
Browse files Browse the repository at this point in the history
Single quotes and semicolons don't work as expected on windows.

Closes #217
  • Loading branch information
fabien0102 authored and katowulf committed Oct 20, 2016
1 parent 902ee8a commit 86b4b24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"main": "bundles/angularfire2.umd.js",
"module": "index.js",
"scripts": {
"test": "npm run build; karma start --single-run",
"test:watch": "concurrently 'npm run build:watch' 'npm run delayed_karma'",
"test": "npm run build && karma start --single-run",
"test:watch": "concurrently \"npm run build:watch\" \"npm run delayed_karma\"",
"delayed_karma": "sleep 10 && karma start",
"delayed_rollup": "sleep 5 && rollup --watch -c rollup.test.config.js",
"build:watch": "rm -rf dist && concurrently 'tsc -w' 'npm run delayed_rollup'",
"build:watch": "rm -rf dist && concurrently \"tsc -w\" \"npm run delayed_rollup\"",
"build": "rm -rf dist && tsc && rollup -c rollup.test.config.js",
"build_npm": "rm -rf dist && ngc -p tsconfig.publish.es6.json && rollup -c rollup.publish.config.js && npm run postbuild_npm",
"build_e2e": "rm -rf dist-test && npm run build && tsc -p test/ && cp test/e2e/firebase_object/index.html dist-test/e2e/firebase_object/ && cp test/e2e/firebase_list/index.html dist-test/e2e/firebase_list/ && cp test/e2e/auth/index.html dist-test/e2e/auth/",
Expand Down

0 comments on commit 86b4b24

Please sign in to comment.