- Make sure you have
node
installed with a version at least 5.5.0. - Run
npm install -g angular-cli
to install the Angular CLI. - Fork the
angular/material2
repo. - Clone your fork.
Recommendation: name your git remotes
upstream
forangular/material2
and<your-username>
for your fork. Also see the team git shortcuts. - From the root of the project, run
npm install
.
To build the project, run ng build
.
To watch for changes and automatically rebuild, run ng build --watch
To bring up a local server, run ng serve
. This will automatically watch for changes and rebuild.
After the changes rebuild, the browser currently needs to be manually refreshed.
To run unit tests, run npm test
or use the CLI with ng test
.
To prepare your environment, you'll need to install protractor and selenium.
# 1. Install the correct selenium version with webdriver-manager (this comes with protractor):
npm run webdriver-manager update
In order to run the tests:
# 1. Spin up a local server with
MD_APP=e2e ng serve
# 2. Run tests with:
ng e2e
Not yet implemented.
Not yet implemented.