Skip to content

Commit

Permalink
chore: update dev environment guide to use yarn (angular#13800)
Browse files Browse the repository at this point in the history
  • Loading branch information
crisbeto authored and mmalerba committed Oct 24, 2018
1 parent f5d42cd commit e40e6c1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions DEV_ENVIRONMENT.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Developer guide: getting your environment set up

1. Make sure you have `node` installed with a version at _least_ 5.5.0.
2. Run `npm install -g gulp` to install gulp.
3. Fork the `angular/material2` repo.
4. Clone your fork.
2. Run `yarn global add gulp` to install gulp.
3. Fork the `angular/material2` repo.
4. Clone your fork.
Recommendation: name your git remotes `upstream` for `angular/material2`
and `<your-username>` for your fork. Also see the [team git shortcuts](https://github.com/angular/material2/wiki/Team-git----bash-shortcuts).
5. From the root of the project, run `npm install`.
5. From the root of the project, run `yarn`.


To build Material in dev mode, run `gulp material:build`.
To build Material in release mode, run `gulp material:build-release`
To bring up a local server, run `gulp serve:devapp`. This will automatically watch for changes

To bring up a local server, run `gulp serve:devapp`. This will automatically watch for changes
and rebuild. The browser should refresh automatically when changes are made.

### Running tests
Expand Down

0 comments on commit e40e6c1

Please sign in to comment.