Skip to content

Commit

Permalink
Merge pull request #23 from jonathanp/fix-json-in-readme
Browse files Browse the repository at this point in the history
Fix indentation and syntax error in JSON example in `README.md`
  • Loading branch information
benoror committed Nov 23, 2015
2 parents cf49752 + 1e2dff8 commit 69570ae
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,42 +32,41 @@ From this:
To this:
```
{
"devDependencies": {
"better-npm-run": "~0.0.1"
},
"devDependencies": {
"better-npm-run": "~0.0.1"
},
"scripts": {
"build:dist": "better-npm-run build:dist",
"test": "better-npm-run test"
},
"betterScripts": {
"build:dist": {
"command": "webpack --config $npm_package_webpack --progress --colors",
"env": {
"NODE_ENV": "development"
}
"command": "webpack --config $npm_package_webpack --progress --colors",
"env": {
"NODE_ENV": "development"
}
},
"build:prod": {
"command": "webpack --config $npm_package_webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
"command": "webpack --config $npm_package_webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
},
"build": [
{
"run": "build:dist"
},
{
"run": "build:prod"
}
{
"run": "build:dist"
},
{
"run": "build:prod"
}
],
"test": {
"command": "karma start",
"env": {
"NODE_ENV": "test"
}
"command": "karma start",
"env": {
"NODE_ENV": "test"
}
}
},
}
}
```

Expand Down

0 comments on commit 69570ae

Please sign in to comment.