Skip to content

Commit

Permalink
Merge pull request #17231 from emberjs/issue/contrib-instructions
Browse files Browse the repository at this point in the history
updated contributing.md
  • Loading branch information
rwjblue authored Nov 26, 2018
2 parents 18c3a66 + fc6d536 commit 7666b70
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,34 @@ discussion at [discuss.emberjs.com](https://discuss.emberjs.com)

# Building Ember.js

Building Ember is quite simple.
Building Ember.js is a quick process:

```sh
clone the latest ember.js directory from github
# clone the latest ember.js directory from github
- git clone https://github.com/emberjs/ember.js.git

cd to the cloned ember.js directory
# cd to the cloned ember.js directory
- cd ember.js

ensure Node.js and yarn are installed
# ensure Node.js and yarn are installed

follow these commands to build ember.js
# build ember.js
- yarn install
- yarn run build
- yarn build
```

## Using Custom Builds in an Ember CLI App
While testing custom behavior (maybe that you'd like to write an RFC for...), here's how you'd use a local custom build with an Ember app to test out the custom build:

```sh
# cd to the directory from Building Ember.js (above)
cd ember.js
yarn link
yarn start

# in a new terminal
cd ../your-app-directory/
yarn link ember-source
```

# How to Run Unit Tests
Expand Down

0 comments on commit 7666b70

Please sign in to comment.