Skip to content

Commit 98348b8

Browse files
committed
npm scripts definition fix
1 parent 7d0d181 commit 98348b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
"dev-test": "karma start test/config/karma.conf.js",
2626
"hint-tests": "jshint --verbose test",
2727
"build": "npm run hint-tests && npm run prod-build && npm run prod-test",
28+
"dev": "npm-run-all --parallel dev-server dev-test",
2829
"test": "npm run dev-test",
29-
"start": "npm-run-all --parallel dev-server dev-test"
30+
"start": "npm run dev-server"
3031
},
3132
"devDependencies": {
3233
"babel-core": "^6.24.1",

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path');
22
const fs = require('fs');
3-
const glob = require("glob");
3+
const glob = require('glob');
44
const webpack = require('webpack');
55
const CleanWebpackPlugin = require('clean-webpack-plugin');
66
const CopyWebpackPlugin = require('copy-webpack-plugin');

0 commit comments

Comments
 (0)