Skip to content

Commit

Permalink
Update compatibility for Angular 9.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noémi Salaun committed Feb 7, 2020
1 parent 81ef185 commit 1ac0773
Show file tree
Hide file tree
Showing 16 changed files with 11,699 additions and 8,206 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
/node_modules

# profiling files
chrome-profiler-events.json
speed-measure-plugin.json
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 9.0.0 (Angular v9+) (2020-02-07)
* Update compatibility for **Angular 9**.

# 7.0.0 (Angular v7+) (2019-03-04)
* This library is now built with Angular CLI library generator.
* Update compatibility for **Angular 7**.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- A log level system to be able to disable certain calls as needed. *We do not want to see our debug trace on production.*
- A logger that keeps trace of the original log call. *We do not want all our logs to be referenced in some `logger.service.js` all the time.*

This package is compatible with **Angular 7**, [Angular AoT compiler](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html) and [Angular CLI](https://cli.angular.io/).
This package is compatible with **Angular 9**, [Angular AoT compiler](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html) and [Angular CLI](https://cli.angular.io/).

## Installation

Expand Down Expand Up @@ -133,6 +133,6 @@ export class AppModule { }

## License

© 2017-2019 Noémi Salaün
© 2017-2020 Noémi Salaün

[MIT](https://github.com/noemi-salaun/ng-logger/blob/master/LICENSE)
11 changes: 9 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@
"newProjectRoot": "projects",
"projects": {
"ng-logger": {
"projectType": "library",
"root": "projects/ng-logger",
"sourceRoot": "projects/ng-logger/src",
"projectType": "library",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/ng-logger/tsconfig.lib.json",
"project": "projects/ng-logger/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ng-logger/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand All @@ -37,7 +42,9 @@
}
}
}
}
}},
"cli": {
"analytics": "4b65baf2-dd07-4cef-9b29-7c1ddd6bce1b"
},
"defaultProject": "ng-logger"
}
Loading

0 comments on commit 1ac0773

Please sign in to comment.