Skip to content

Commit

Permalink
No need to install brunch globally (phoenixframework#2352)
Browse files Browse the repository at this point in the history
  • Loading branch information
raspo authored and chrismccord committed Jun 20, 2017
1 parent 3801e61 commit 961dc24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ To create projects outside of the `installer/` directory, add the latest archive

```bash
$ npm install
$ npm install -g brunch
$ brunch watch
$ npm run watch
```

### Building docs from source
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"files": ["README.md", "LICENSE.md", "package.json", "priv/static/phoenix.js", "assets/js/phoenix.js"],
"scripts": {
"test": "./node_modules/.bin/mocha ./assets/test/**/*.js --compilers js:babel-register -r jsdom-global/register",
"docs": "documentation build assets/js/phoenix.js -f html -o doc/js"
"docs": "documentation build assets/js/phoenix.js -f html -o doc/js",
"watch": "brunch watch",
"build": "brunch build"
}
}

0 comments on commit 961dc24

Please sign in to comment.