From b85062fceeb3f577a0aeaad33bc72e8d7ac95e0b Mon Sep 17 00:00:00 2001 From: Ryan Jordan Date: Wed, 30 Aug 2017 11:23:43 -0500 Subject: [PATCH] docs(example-app): Update example-app url (#336) --- example-app/README.md | 2 +- package.json | 27 +++++++-------------------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/example-app/README.md b/example-app/README.md index ed59e3ee39..78c940d8df 100644 --- a/example-app/README.md +++ b/example-app/README.md @@ -1,7 +1,7 @@ # @ngrx example application Example application utilizing @ngrx libraries, showcasing common patterns and best practices. -Take a look at the [live app](http://ngrx.github.io/example-app/). +Take a look at the [live app](https://ngrx.github.io/platform/example-app/). This app is a book collection manager. The user can authenticate, use the Google Books API to search for books and add them to their collection. This application utilizes [@ngrx/db](https://github.com/ngrx/db) diff --git a/package.json b/package.json index d2262dcd81..04f8be9bc6 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "example:start": "yarn run build && yarn run cli -- serve", "example:start:aot": "yarn run build && yarn run cli -- serve --aot", "example:test": "yarn run cli -- test --code-coverage", + "example:build:prod": "yarn build && yarn cli -- build --aot -prod --base-href \"/platform/example-app/\" --output-path \"./example-dist/example-app\"", "ci": "yarn run build && yarn run test && nyc report --reporter=text-lcov | coveralls", "prettier": "prettier --parser typescript --single-quote --trailing-comma es5 --write \"./**/*.ts\"", "watch:tests": "chokidar 'modules/**/*.ts' --initial -c 'nyc --reporter=text --reporter=html yarn run test:unit'", @@ -23,30 +24,16 @@ "release": "lerna publish --skip-npm --conventional-commits && npm run build" }, "lint-staged": { - "*.ts": [ - "yarn prettier", - "git add" - ] + "*.ts": ["yarn prettier", "git add"] }, - "keywords": [ - "ngrx", - "angular", - "rxjs" - ], + "keywords": ["ngrx", "angular", "rxjs"], "author": "Rob Wormald ", "license": "MIT", "repository": {}, "nyc": { - "extension": [ - ".ts" - ], - "exclude": [ - "**/*.spec", - "**/spec/**/*" - ], - "include": [ - "**/*.ts" - ] + "extension": [".ts"], + "exclude": ["**/*.spec", "**/spec/**/*"], + "include": ["**/*.ts"] }, "devDependencies": { "@angular/animations": "^4.2.0", @@ -120,4 +107,4 @@ "url": "https://opencollective.com/ngrx", "logo": "https://opencollective.com/opencollective/logo.txt" } -} \ No newline at end of file +}