From b6ddacdccfea7afbb1fdab261b3069b78c6655f0 Mon Sep 17 00:00:00 2001 From: Jesus Rodriguez Date: Wed, 19 Apr 2017 14:02:35 +0200 Subject: [PATCH] build(aio): add setup script --- aio/README.md | 3 ++- aio/package.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/aio/README.md b/aio/README.md index 999183fb0a..c1eebdd42d 100644 --- a/aio/README.md +++ b/aio/README.md @@ -13,6 +13,7 @@ You should run all these tasks from the `angular/aio` folder. Here are the most important tasks you might need to use: * `yarn` - install all the dependencies. +* `yarn setup` - Install all the dependencies, boilerplate, plunkers, zips and runs dgeni on the docs. * `yarn start` - run a development web server that watches the files; then builds the doc-viewer and reloads the page, as necessary. * `yarn lint` - check that the doc-viewer code follows our style rules. @@ -87,4 +88,4 @@ yarn docs-watch You can automatically open the browser by using `yarn start -- -o` in the first terminal. * Make changes to the page's associated doc or example files. Every time a file is saved, the doc will -be regenerated, the app will rebuild and the page will reload. \ No newline at end of file +be regenerated, the app will rebuild and the page will reload. diff --git a/aio/package.json b/aio/package.json index e7beb32d85..a72ee642ae 100644 --- a/aio/package.json +++ b/aio/package.json @@ -8,11 +8,12 @@ "scripts": { "ng": "yarn check-env && ng", "start": "yarn check-env && ng serve", - "build": "yarn check-env && yarn docs && ng build -prod -sm", + "build": "yarn check-env && yarn setup && ng build -prod -sm", "lint": "yarn check-env && yarn docs-lint && ng lint", "test": "yarn check-env && ng test --sourcemap=false", "pree2e": "yarn ~~update-webdriver", "e2e": "yarn check-env && ng e2e --no-webdriver-update", + "setup": "yarn && yarn boilerplate:add && yarn docs && yarn generate-plunkers && yarn generate-zips", "pretest-pwa-score-local": "yarn build", "test-pwa-score-local": "concurrently --kill-others --success first \"http-server dist -p 4200 --silent\" \"yarn test-pwa-score -- http://localhost:4200 90\"", "test-pwa-score": "node scripts/test-pwa-score",