Skip to content

Commit

Permalink
feat(package): migrate to ng12
Browse files Browse the repository at this point in the history
BREAKING CHANGE: ng12
  • Loading branch information
sqrter committed Jun 7, 2021
1 parent 6329569 commit e228a68
Show file tree
Hide file tree
Showing 5 changed files with 1,800 additions and 722 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/@ngx-meta/*"
],
"version": "9.0.0",
"version": "12.0.0",
"npmClient": "yarn",
"command": {
"publish": {
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"release": "standard-version"
},
"devDependencies": {
"@angular/common": "^9.1.0",
"@angular/compiler": "^9.1.0",
"@angular/compiler-cli": "^9.1.0",
"@angular/core": "^9.1.0",
"@angular/platform-browser": "^9.1.0",
"@angular/platform-browser-dynamic": "^9.1.0",
"@angular/router": "^9.1.0",
"@angular/common": "^12.0.3",
"@angular/compiler": "^12.0.3",
"@angular/compiler-cli": "^12.0.3",
"@angular/core": "^12.0.3",
"@angular/platform-browser": "^12.0.3",
"@angular/platform-browser-dynamic": "^12.0.3",
"@angular/router": "^12.0.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^23.3.14",
Expand All @@ -52,19 +52,19 @@
"lerna": "^3.20.2",
"lint-staged": "^10.0.0",
"lodash": "^4.17.15",
"ng-packagr": "^9.0.0",
"ng-packagr": "^12.0.3",
"prettier": "1.19.1",
"prettier-tslint": "^0.4.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"rxjs": "~6.5.4",
"rxjs": "~6.6.7",
"ts-node": "^8.9.0",
"tsickle": "^0.38.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.8.3",
"zone.js": "^0.10.2"
"typescript": "~4.2.4",
"zone.js": "~0.11.4"
},
"husky": {
"hooks": {
Expand Down
10 changes: 5 additions & 5 deletions packages/@ngx-meta/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-meta/core",
"version": "9.0.0",
"version": "12.0.0",
"description": "Dynamic page title & meta tags utility for Angular (w/server-side rendering)",
"repository": {
"type": "git",
Expand All @@ -27,10 +27,10 @@
},
"homepage": "https://github.com/fulls1z3/ngx-meta/tree/master/packages/@ngx-meta/core#readme",
"peerDependencies": {
"@angular/core": ">=9.0.0 <10.0.0",
"@angular/platform-browser": ">=9.0.0 <10.0.0",
"@angular/platform-browser-dynamic": ">=9.0.0 <10.0.0",
"@angular/router": ">=9.0.0 <10.0.0",
"@angular/core": ">=12.0.0 <13.0.0",
"@angular/platform-browser": ">=12.0.0 <13.0.0",
"@angular/platform-browser-dynamic": ">=12.0.0 <13.0.0",
"@angular/router": ">=12.0.0 <13.0.0",
"rxjs": ">=6.0.0"
},
"publishConfig": {
Expand Down
6 changes: 6 additions & 0 deletions tools/build/tsconfig.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
"es2015",
"dom"
]
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
"enableIvy": false
}
}
Loading

0 comments on commit e228a68

Please sign in to comment.