Skip to content

Commit 971b56d

Browse files
committed
Fix npm script, can use npm start to run dev server
1 parent 70c10d2 commit 971b56d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"dev": "./node_modules/.bin/webpack-dev-server --mode=development --config webpack.dev.js",
99
"build": "./node_modules/.bin/webpack --mode=production --config webpack.prod.js",
10-
"start": "node server.js --mode=development --env=dev",
10+
"start": "npm run dev",
1111
"test": "karma start",
1212
"test:watch": "karma start --autoWatch=true --singleRun=false",
1313
"posttest": "npm run lint",

webpack.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// UNUSED — jmwohl 2020-02-10 - Leaving here as prior reference
2+
13
'use strict';
24

35
const path = require('path');

0 commit comments

Comments
 (0)