Developer Setup - ngbracket/ngx-layout GitHub Wiki
Getting your environment set up
- Make sure you have
node
installed with a version at least 8.9.1 - Run
npm install -g gulp
to installgulp
- Fork the
ngbracket/ngx-layout
repo - Clone your fork.
Recommendation: name your git remotes
upstream
forngbracket/ngx-layout
and<your-username>
for your fork - From the root of the project, run
npm install
Building the library
- To build the library, run
npm run lib:build
- To build and serve the demo-app, run
npm run demo:serve
- To build and serve the Universal app, run
npm run universal:serve
Integration within your project
Developers should read the Fast Start for alternate integration instructions
Running tests
- To run unit tests, run
npm run lib:test
- To run lint, run
npm run lib:lint