Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(example-app): Update example-app url (#336) #8

Merged
merged 1 commit into from
Aug 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example-app/README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
27 changes: 7 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
Expand All @@ -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 <[email protected]>",
"license": "MIT",
"repository": {},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec",
"**/spec/**/*"
],
"include": [
"**/*.ts"
]
"extension": [".ts"],
"exclude": ["**/*.spec", "**/spec/**/*"],
"include": ["**/*.ts"]
},
"devDependencies": {
"@angular/animations": "^4.2.0",
Expand Down Expand Up @@ -120,4 +107,4 @@
"url": "https://opencollective.com/ngrx",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}
}