Browse Source

commit to migrate to 12.2.18

pull/2054/head
Tarun Jain 1 year ago
parent
commit
042d6ce621
6 changed files with 20787 additions and 20532 deletions
  1. +10
    -2
      src/Web/WebSPA/Client/angular.json
  2. +10960
    -12118
      src/Web/WebSPA/Client/package-lock.json
  3. +28
    -28
      src/Web/WebSPA/Client/package.json
  4. +1
    -1
      src/Web/WebSPA/Client/src/polyfills.ts
  5. +0
    -1
      src/Web/WebSPA/Client/tsconfig.json
  6. +9788
    -8382
      src/Web/WebSPA/Client/yarn.lock

+ 10
- 2
src/Web/WebSPA/Client/angular.json View File

@ -23,7 +23,14 @@
"styles": [
"src/styles/globals.scss"
],
"scripts": []
"scripts": [],
"aot": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
@ -48,7 +55,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",


+ 10960
- 12118
src/Web/WebSPA/Client/package-lock.json
File diff suppressed because it is too large
View File


+ 28
- 28
src/Web/WebSPA/Client/package.json View File

@ -22,23 +22,23 @@
"start": "ng serve",
"build:dev": "ng build",
"build:dev:watch": "npm run build:dev && ng build --watch",
"build:prod": "ng build --prod --aot --extract-css",
"build:prod": "ng build --configuration production --aot --extract-css",
"lint:sass": "sass-lint -c .sass-lint.yml Client/**/*.scss --verbose",
"lint:ts": "tslint -c tslint.json Client/**/*.ts"
},
"dependencies": {
"@angular-devkit/schematics": "^11.0.4",
"@angular/animations": "11.2.14",
"@angular/common": "11.2.14",
"@angular/compiler": "11.2.14",
"@angular/core": "11.2.14",
"@angular/forms": "11.2.14",
"@angular/platform-browser": "11.2.14",
"@angular/platform-browser-dynamic": "11.2.14",
"@angular/platform-server": "11.2.14",
"@angular/router": "11.2.14",
"@angular-devkit/schematics": "^12.2.18",
"@angular/animations": "12.2.17",
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@angular/platform-server": "12.2.17",
"@angular/router": "12.2.17",
"@microsoft/signalr": "3.0.1",
"@ng-bootstrap/ng-bootstrap": "^8.0.0",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@popperjs/core": "2.0.0",
"acorn": "^6.4.1",
"acorn-dynamic-import": "4.0.0",
@ -57,30 +57,30 @@
"ssri": ">=8.0.1",
"tslib": "^2.0.0",
"typedoc": "0.22.11",
"webpack-dev-server": "4.7.4",
"zone.js": "~0.10.2"
"webpack-dev-server": "^4.11.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.14",
"@angular/cli": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@angular/language-service": "11.2.14",
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "12.2.18",
"@angular/compiler-cli": "12.2.17",
"@angular/language-service": "12.2.17",
"@types/core-js": "2.5.0",
"@types/hammerjs": "2.0.35",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@types/protractor": "4.0.0",
"@types/selenium-webdriver": "3.0.10",
"codelyzer": "^6.0.0",
"codelyzer": "^6.0.2",
"eslint": "8.10.0",
"handlebars": "^4.7.7",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"jasmine-core": "4.5.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lodash": "^4.17.21",
"merge": "2.1.1",
"npm-watch": "0.5.0",
@ -91,8 +91,8 @@
"ts-node": "~7.0.1",
"tslint": "~6.1.0",
"typedoc": "0.22.11",
"typescript": "4.0.8",
"typescript": "4.3.5",
"url-loader": "1.1.1",
"webpack": "^4.42.1"
"webpack": "^5.75.0"
}
}
}

+ 1
- 1
src/Web/WebSPA/Client/src/polyfills.ts View File

@ -53,7 +53,7 @@ import 'core-js/proposals/reflect-metadata';
/***************************************************************************************************
* Zone JS is required by Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.


+ 0
- 1
src/Web/WebSPA/Client/tsconfig.json View File

@ -6,7 +6,6 @@
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"typeRoots": [


+ 9788
- 8382
src/Web/WebSPA/Client/yarn.lock
File diff suppressed because it is too large
View File


Loading…
Cancel
Save