Update core & cli

upgradeTo12
VANNEAU 3 years ago
parent f07a3e6794
commit 8d153cf4c1
  1. 12
      angular.json
  2. 10027
      package-lock.json
  3. 28
      package.json
  4. 2
      src/environments/environment.ts
  5. 2
      src/polyfills.ts
  6. 2
      src/test.ts

@ -18,7 +18,6 @@
"main": "src/main.ts", "main": "src/main.ts",
"polyfills": "src/polyfills.ts", "polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json", "tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [ "assets": [
"src/favicon.ico", "src/favicon.ico",
"src/assets" "src/assets"
@ -26,7 +25,13 @@
"styles": [ "styles": [
"src/styles.scss" "src/styles.scss"
], ],
"scripts": [] "scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
}, },
"configurations": { "configurations": {
"production": { "production": {
@ -56,7 +61,8 @@
} }
] ]
} }
} },
"defaultConfiguration": ""
}, },
"serve": { "serve": {
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",

10027
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -13,25 +13,25 @@
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular-material-components/datetime-picker": "^5.0.3", "@angular-material-components/datetime-picker": "^5.0.3",
"@angular/animations": "~11.1.2", "@angular/animations": "~12.2.12",
"@angular/cdk": "^11.1.2", "@angular/cdk": "^11.1.2",
"@angular/common": "~11.1.2", "@angular/common": "~12.2.12",
"@angular/compiler": "~11.1.2", "@angular/compiler": "~12.2.12",
"@angular/core": "~11.1.2", "@angular/core": "~12.2.12",
"@angular/forms": "~11.1.2", "@angular/forms": "~12.2.12",
"@angular/material": "^11.1.2", "@angular/material": "^11.1.2",
"@angular/platform-browser": "~11.1.2", "@angular/platform-browser": "~12.2.12",
"@angular/platform-browser-dynamic": "~11.1.2", "@angular/platform-browser-dynamic": "~12.2.12",
"@angular/router": "~11.1.2", "@angular/router": "~12.2.12",
"angular-oauth2-oidc": "^10.0.3", "angular-oauth2-oidc": "^10.0.3",
"rxjs": "~6.6.3", "rxjs": "~6.6.3",
"tslib": "^2.1.0", "tslib": "^2.1.0",
"zone.js": "~0.11.3" "zone.js": "~0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.1101.4", "@angular-devkit/build-angular": "~12.2.12",
"@angular/cli": "~11.1.4", "@angular/cli": "~12.2.12",
"@angular/compiler-cli": "~11.1.2", "@angular/compiler-cli": "~12.2.12",
"@compodoc/compodoc": "^1.1.15", "@compodoc/compodoc": "^1.1.15",
"@types/jasmine": "~3.6.3", "@types/jasmine": "~3.6.3",
"@types/jasminewd2": "~2.0.8", "@types/jasminewd2": "~2.0.8",
@ -39,7 +39,7 @@
"codelyzer": "^6.0.1", "codelyzer": "^6.0.1",
"jasmine-core": "~3.6.0", "jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0", "jasmine-spec-reporter": "~6.0.0",
"karma": "~6.1.0", "karma": "~6.3.7",
"karma-chrome-launcher": "~3.1.0", "karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3", "karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1", "karma-jasmine": "~4.0.1",
@ -47,6 +47,6 @@
"protractor": "~7.0.0", "protractor": "~7.0.0",
"ts-node": "~9.1.1", "ts-node": "~9.1.1",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"typescript": "~4.1.3" "typescript": "~4.3.5"
} }
} }

@ -48,4 +48,4 @@ export const environment = {
* This import should be commented out in production mode because it will have a negative impact * This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown. * on performance if an error is thrown.
*/ */
// import 'zone.js/dist/zone-error'; // Included with Angular CLI. // import 'zone.js/plugins/zone-error'; // Included with Angular CLI.

@ -55,7 +55,7 @@
/*************************************************************************************************** /***************************************************************************************************
* Zone JS is required by default for Angular itself. * Zone JS is required by default for Angular itself.
*/ */
import 'zone.js/dist/zone'; // Included with Angular CLI. import 'zone.js'; // Included with Angular CLI.
/*************************************************************************************************** /***************************************************************************************************

@ -1,6 +1,6 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files // This file is required by karma.conf.js and loads recursively all the .spec and framework files
import 'zone.js/dist/zone-testing'; import 'zone.js/testing';
import { getTestBed } from '@angular/core/testing'; import { getTestBed } from '@angular/core/testing';
import { import {
BrowserDynamicTestingModule, BrowserDynamicTestingModule,

Loading…
Cancel
Save