Skip to content

Commit

Permalink
chore(development): add setup script on package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
edetec committed Mar 6, 2018
1 parent 213934f commit c64cc2d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -246,7 +246,9 @@ export class AppModule {

## Development

View common development activities on https://github.com/tinesoft/generator-ngx-library#development
After cloning of this repository will be necessary run once ```npm run setup```, so will be able to run ```npm run demo``` to start the demo locally

For more information view common development activities on https://github.com/tinesoft/generator-ngx-library#development

## License

Expand Down
10 changes: 7 additions & 3 deletions package.json
Expand Up @@ -21,9 +21,13 @@
"url": "https://github.com/ESSS/ng-xform/issues"
},
"scripts": {
"start": "gulp build",
"test": " gulp test",
"demo": " gulp build:demo",
"setup": "npm i && gulp build && gulp link && cd demo && npm i",
"test": "gulp test",
"build": "gulp build",
"watch": "gulp build:watch",
"watch-fast": "gulp build:watch-fast",
"demo": "gulp serve:demo",
"build-demo": "gulp build:demo",
"check-travis": " travis-status --repo=ESSS/ng-xform --branch=master --fail-pending || echo 'Not yet passing'"
},
"dependencies": {
Expand Down

0 comments on commit c64cc2d

Please sign in to comment.