agnular12版本

dev
胡锐 1 day ago
parent f3f8f8b0d8
commit 20613c2191
  1. 12
      angular.json
  2. 12002
      package-lock.json
  3. 28
      package.json
  4. 2
      src/environments/environment.ts
  5. 2
      src/polyfills.ts
  6. 2
      src/test.ts

@ -22,7 +22,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",
@ -39,7 +38,13 @@
"scripts": [ "scripts": [
"./node_modules/jquery/dist/jquery.js", "./node_modules/jquery/dist/jquery.js",
"./src/assets/js/bootstrap-treeview.min.js" "./src/assets/js/bootstrap-treeview.min.js"
] ],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
}, },
"configurations": { "configurations": {
"prod": { "prod": {
@ -126,7 +131,8 @@
} }
] ]
} }
} },
"defaultConfiguration": ""
}, },
"serve": { "serve": {
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",

12002
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -11,14 +11,14 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~11.2.14", "@angular/animations": "~12.2.17",
"@angular/common": "~11.2.14", "@angular/common": "~12.2.17",
"@angular/compiler": "~11.2.14", "@angular/compiler": "~12.2.17",
"@angular/core": "~11.2.14", "@angular/core": "~12.2.17",
"@angular/forms": "~11.2.14", "@angular/forms": "~12.2.17",
"@angular/platform-browser": "~11.2.14", "@angular/platform-browser": "~12.2.17",
"@angular/platform-browser-dynamic": "~11.2.14", "@angular/platform-browser-dynamic": "~12.2.17",
"@angular/router": "~11.2.14", "@angular/router": "~12.2.17",
"@notadd/ngx-neditor": "^1.0.2", "@notadd/ngx-neditor": "^1.0.2",
"@types/jquery": "^3.5.0", "@types/jquery": "^3.5.0",
"echarts": "^4.9.0", "echarts": "^4.9.0",
@ -27,13 +27,13 @@
"ngx-echarts": "^4.2.2", "ngx-echarts": "^4.2.2",
"rxjs": "~6.5.4", "rxjs": "~6.5.4",
"tslib": "^2.0.0", "tslib": "^2.0.0",
"zone.js": "~0.10.2" "zone.js": "~0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.1102.19", "@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "~11.2.19", "@angular/cli": "~12.2.18",
"@angular/compiler-cli": "~11.2.14", "@angular/compiler-cli": "~12.2.17",
"@angular/language-service": "~11.2.14", "@angular/language-service": "~12.2.17",
"@types/jasmine": "~3.5.0", "@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3", "@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1", "@types/node": "^12.11.1",
@ -49,6 +49,6 @@
"ts-md5": "^1.2.7", "ts-md5": "^1.2.7",
"ts-node": "~8.3.0", "ts-node": "~8.3.0",
"tslint": "~6.1.0", "tslint": "~6.1.0",
"typescript": "~4.0.8" "typescript": "~4.3.5"
} }
} }

@ -20,4 +20,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