Skip to content

Commit

Permalink
Specify peer dependencies as "supported range" to prevent unnecessary…
Browse files Browse the repository at this point in the history
… warnings
  • Loading branch information
kctang committed Jun 4, 2019
1 parent 4e3e444 commit bfa47f3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 14 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.

- ...

## [0.1.3] - 2019-06-04

### Changed

- Update minimum version of `ng-quick-form` to 0.0.5.
- Specify peer dependencies as "supported range" to prevent unnecessary warnings.

## [0.1.2] - 2019-05-31

### Changed
Expand Down Expand Up @@ -37,7 +44,8 @@ All notable changes to this project will be documented in this file.
### Fixed
- Fix "Cannot find module '@angular-mdc/web'" ([#1](kctang/dialog-service#1))

[Unreleased]: https://github.com/kctang/dialog-service/compare/v0.1.2...HEAD
[Unreleased]: https://github.com/kctang/dialog-service/compare/v0.1.3...HEAD
[0.1.3]: https://github.com/kctang/dialog-service/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/kctang/dialog-service/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/kctang/dialog-service/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/kctang/dialog-service/compare/v0.0.4...v0.1.0
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/router": "~8.0.0",
"common-style-attributes": "^0.0.3",
"common-style-attributes": "^0.0.4",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"highlight.js": "^9.15.6",
"ng-quick-form": "^0.0.4",
"ng-quick-form": "^0.0.5",
"ngx-highlightjs": "^3.0.3",
"rxjs": "~6.5.2",
"tslib": "^1.9.0",
Expand Down
10 changes: 5 additions & 5 deletions projects/dialog-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dialog-service",
"version": "0.1.2",
"version": "0.1.3",
"description": "Reactive Angular modal dialogs. Create alert, confirmation, progress and form based dialogs without writing component templates.",
"repository": {
"type": "git",
Expand All @@ -19,10 +19,10 @@
"license": "MIT",
"homepage": "https://dialog-service.surge.sh/",
"peerDependencies": {
"@angular/common": "^8.0.0",
"@angular/core": "^8.0.0",
"common-style-attributes": "^0.0.3",
"ng-quick-form": "^0.0.4"
"@angular/common": ">=7.0.0 <9.0.0",
"@angular/core": ">=7.0.0 <9.0.0",
"common-style-attributes": ">=0.0.4 <0.1.0",
"ng-quick-form": ">=0.0.5 <0.1.0"
},
"optionalDependencies": {
"@angular/material": "^8.0.0",
Expand Down

0 comments on commit bfa47f3

Please sign in to comment.