Skip to content

Commit e3c2fed

Browse files
committed
fixes the dev script references
1 parent 8e1f48f commit e3c2fed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ npm run dev
7878
npm run dev:server
7979

8080
# run eslint
81-
npm run dev:server
81+
npm run dev:lint
8282

8383
# compile the application
8484
npm run build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
"test": "mocha --exit",
1010
"build": "babel src/ --out-dir=dist/ --copy-files",
11-
"dev": "concurrently --kill-others --prefix=name --names=server,eslint --prefix-colors=green,magenta \"npm run start:server\" \"npm run start:lint\"",
11+
"dev": "concurrently --kill-others --prefix=name --names=server,eslint --prefix-colors=green,magenta \"npm run dev:server\" \"npm run dev:lint\"",
1212
"dev:server": "babel-watch --watch src test/server.js",
1313
"dev:lint": "esw src/ --changed --watch",
1414
"heroku-postbuild": "npm run build",

0 commit comments

Comments
 (0)