Skip to content

Commit

Permalink
feat(angular major): update angular core to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
kKen94 committed Jan 24, 2020
1 parent d0d3a58 commit b512f4a
Show file tree
Hide file tree
Showing 6 changed files with 1,296 additions and 561 deletions.
10 changes: 7 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
"tsConfig": "projects/lib/tsconfig.lib.json",
"project": "projects/lib/ng-package.json"
}
},
, "configurations": {
"production": {
"tsConfig": "projects/lib/tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
Expand Down Expand Up @@ -48,7 +53,7 @@
"main": "projects/demo/src/main.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"tsConfig": "projects/demo/tsconfig.app.json",
"aot": false,
"aot": true,
"assets": [
"projects/demo/src/favicon.ico",
"projects/demo/src/assets"
Expand All @@ -71,7 +76,6 @@
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand Down
39 changes: 19 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,55 +40,54 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~8.2.13",
"@angular/animations": "~9.0.0-rc.10",
"@angular/cdk": "~8.2.3",
"@angular/common": "~8.2.13",
"@angular/compiler": "~8.2.13",
"@angular/core": "~8.2.13",
"@angular/common": "~9.0.0-rc.10",
"@angular/compiler": "~9.0.0-rc.10",
"@angular/core": "~9.0.0-rc.10",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/forms": "~8.2.13",
"@angular/forms": "~9.0.0-rc.10",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "~8.2.13",
"@angular/platform-browser-dynamic": "~8.2.13",
"@angular/router": "~8.2.13",
"@angular/platform-browser": "~9.0.0-rc.10",
"@angular/platform-browser-dynamic": "~9.0.0-rc.10",
"@angular/router": "~9.0.0-rc.10",
"copyfiles": "^2.1.1",
"hammerjs": "^2.0.8",
"ngx-color": "^4.1.0",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.20",
"@angular-devkit/build-ng-packagr": "~0.803.20",
"@angular/cli": "~8.3.20",
"@angular/compiler-cli": "~8.2.13",
"@angular/language-service": "~8.2.13",
"@angular-devkit/build-angular": "~0.900.0-rc.10",
"@angular-devkit/build-ng-packagr": "~0.900.0-rc.10",
"@angular/cli": "~9.0.0-rc.10",
"@angular/compiler-cli": "~9.0.0-rc.10",
"@angular/language-service": "~9.0.0-rc.10",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/prompt": "^8.2.0",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/exec": "^4.0.0",
"@semantic-release/git": "^8.0.0",
"@types/node": "^12.12.8",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "^0.6.0",
"angular-tslint-rules": "^1.20.1",
"codelyzer": "^5.0.0",
"codelyzer": "^5.1.2",
"husky": "^4.0.9",
"lint-staged": "^10.0.2",
"ng-packagr": "^5.4.0",
"ng-packagr": "^9.0.0-rc.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"replace-json-property": "^1.4.1",
"semantic-release": "^16.0.1",
"ts-node": "~7.0.0",
"tsickle": "^0.37.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.5.3"
"typescript": "~3.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kKen94/ngx-progress.git"
}
}
}
2 changes: 1 addition & 1 deletion projects/demo/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"src/polyfills.ts"
],
"include": [
"src/**/*.ts"
"src/**/*.d.ts"
],
"exclude": [
"src/test.ts",
Expand Down
1 change: 0 additions & 1 deletion projects/lib/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
]
},
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
Expand Down
6 changes: 6 additions & 0 deletions projects/lib/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "./tsconfig.lib.json",
"angularCompilerOptions": {
"enableIvy": false
}
}
Loading

0 comments on commit b512f4a

Please sign in to comment.