Skip to content

Commit

Permalink
Finish updating library
Browse files Browse the repository at this point in the history
  • Loading branch information
pfbrowning committed Mar 10, 2020
1 parent 11721e7 commit 611a165
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -10,10 +10,10 @@
[![dependency Status](https://david-dm.org/pfbrowning/ng-modal/status.svg?path=projects%2Fng-modal)](https://david-dm.org/pfbrowning/ng-modal)

## Peer Dependencies
* [@angular/common](https://www.npmjs.com/package/@angular/common) (^6.0.0, ^7.0.0, or ^8.0.0)
* [@angular/core](https://www.npmjs.com/package/@angular/core) (^6.0.0, ^7.0.0, or ^8.0.0)
* [@angular/common](https://www.npmjs.com/package/@angular/common) (^6.0.0, ^7.0.0, ^8.0.0, or ^9.0.0)
* [@angular/core](https://www.npmjs.com/package/@angular/core) (^6.0.0, ^7.0.0, ^8.0.0, or ^9.0.0)

The library has been tested with Angular 6, 7, and 8.
The library has been tested with Angular 6, 7, 8, and 9.

## Installation

Expand Down
5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -15,15 +15,16 @@
"compodoc-move": "mv documentation dist/ng-modal-demo/doc",
"ghpages-compodoc-build-push": "npm run ghpages-build && npm run compodoc-generate && npm run compodoc-move && npm run ghpages-publish",
"build-prod": "ng build --prod --aot",
"build-lib": "rm -rf ./dist/ng-modal && ng build ng-modal",
"build-lib": "rm -rf ./dist/ng-modal && ng build ng-modal --prod",
"test-library": "ng test ng-modal",
"test-library-coverage": "ng test ng-modal --source-map --code-coverage=true",
"build-test-library-coverage": "npm run build-prod && npm run test-library-coverage",
"test:cover": "rm -rf ./coverage && ng test ng-modal --source-map --no-watch --code-coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"copy-readme": "cp README.md dist/ng-modal",
"npm-pack": "cd dist/ng-modal && npm pack",
"package": "npm run build-lib && npm run copy-readme && npm run npm-pack"
"package": "npm run build-lib && npm run copy-readme && npm run npm-pack",
"npm-publish": "cd dist/ng-modal && npm publish"
},
"private": true,
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions projects/ng-modal/package.json
@@ -1,9 +1,9 @@
{
"name": "@browninglogic/ng-modal",
"version": "4.0.3",
"version": "4.0.4",
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0"
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"description": "A simple, lightweight interface for creating layered modal dialogs in Angular 6+",
"keywords": [
Expand Down

0 comments on commit 611a165

Please sign in to comment.