Skip to content

Commit

Permalink
Angular 12 upgrade (#2016)
Browse files Browse the repository at this point in the history
* Upgrade typescript to v4.3.5

* Upgrade tslib to v2.3.0

* Upgrade to Angular v12

* Update peer dependencies for ng 12 support
  • Loading branch information
mario-alva authored Aug 17, 2021
1 parent 1a36d29 commit d0f58aa
Show file tree
Hide file tree
Showing 8 changed files with 6,758 additions and 7,171 deletions.
15 changes: 12 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": "b0fec727-d21d-49bf-b321-5c65a26c8df5"
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
Expand All @@ -22,10 +25,15 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand Down Expand Up @@ -55,7 +63,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
Loading

1 comment on commit d0f58aa

@damir-dezeljin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have a plan when a new version supporting Angular 12 would be released?

Please sign in to comment.