Skip to content

Commit 774207a

Browse files
chore(test): 'npm run watch' now uses karma-webpack to watch source/test files
1 parent 9ad4247 commit 774207a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"clean": "shx rm -rf lib lib-esm _doc release",
77
"build": "tsc && tsc -m es6 --outDir lib-esm",
88
"package": "npm run clean && npm run build && webpack",
9-
"watch": "node_modules/watch/cli.js 'npm run test' src test",
109
"test": "npm run test:integrate",
1110
"test:ng12": "karma start --ngversion 1.2.28",
1211
"test:ng13": "karma start --ngversion 1.3.16",
1312
"test:ng14": "karma start --ngversion 1.4.9",
1413
"test:ng15": "karma start --ngversion 1.5.0",
1514
"test:integrate": "tsc && npm run test:ng12 && npm run test:ng13 && npm run test:ng14 && npm run test:ng15",
16-
"debug": "karma start --singleRun=false --browsers=Chrome --autoWatch=true --autoWatchInterval=1",
15+
"watch": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
16+
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=Chrome",
1717
"docs": "typedoc --tsconfig tsconfig.typedoc.json --readme README.md --name 'angular-ui-router' --theme node_modules/ui-router-typedoc-themes/bin/default --out _doc --external-aliases internalapi,external --navigation-label-globals angular-ui-router",
1818
"prepublish": "npm run package"
1919
},

0 commit comments

Comments
 (0)