Browse Source

commit to migrate angualr version to @angular 13.3.10

pull/2054/head
Tarun Jain 1 year ago
parent
commit
0fd7b932fc
6 changed files with 8978 additions and 10904 deletions
  1. +0
    -19
      src/Web/WebSPA/Client/angular.json
  2. +7273
    -8610
      src/Web/WebSPA/Client/package-lock.json
  3. +18
    -18
      src/Web/WebSPA/Client/package.json
  4. +0
    -10
      src/Web/WebSPA/Client/src/polyfills.ts
  5. +3
    -1
      src/Web/WebSPA/Client/src/test.ts
  6. +1684
    -2246
      src/Web/WebSPA/Client/yarn.lock

+ 0
- 19
src/Web/WebSPA/Client/angular.json View File

@ -91,16 +91,6 @@
"src/favicon.ico"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": []
}
}
}
},
@ -115,15 +105,6 @@
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "WebSPA:serve"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": []
}
}
}
}


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


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

@ -27,18 +27,18 @@
"lint:ts": "tslint -c tslint.json Client/**/*.ts"
},
"dependencies": {
"@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",
"@angular-devkit/schematics": "^13.3.10",
"@angular/animations": "13.3.12",
"@angular/common": "13.3.12",
"@angular/compiler": "13.3.12",
"@angular/core": "13.3.12",
"@angular/forms": "13.3.12",
"@angular/platform-browser": "13.3.12",
"@angular/platform-browser-dynamic": "13.3.12",
"@angular/platform-server": "13.3.12",
"@angular/router": "13.3.12",
"@microsoft/signalr": "3.0.1",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@ng-bootstrap/ng-bootstrap": "^11.0.1",
"@popperjs/core": "2.0.0",
"acorn": "^6.4.1",
"acorn-dynamic-import": "4.0.0",
@ -56,15 +56,15 @@
"rxjs-compat": "^6.5.2",
"ssri": ">=8.0.1",
"tslib": "^2.0.0",
"typedoc": "0.22.11",
"typedoc": "1.0.0-dev.4",
"webpack-dev-server": "^4.11.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "12.2.18",
"@angular/compiler-cli": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular-devkit/build-angular": "~13.3.10",
"@angular/cli": "13.3.10",
"@angular/compiler-cli": "13.3.12",
"@angular/language-service": "13.3.12",
"@types/core-js": "2.5.0",
"@types/hammerjs": "2.0.35",
"@types/jasmine": "~3.6.0",
@ -90,8 +90,8 @@
"ts-helpers": "1.1.2",
"ts-node": "~7.0.1",
"tslint": "~6.1.0",
"typedoc": "0.22.11",
"typescript": "4.3.5",
"typedoc": "1.0.0-dev.4",
"typescript": "4.6.4",
"url-loader": "^4.1.1",
"webpack": "^5.75.0"
}

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

@ -33,22 +33,12 @@
// import 'core-js/es6/map';
// import 'core-js/es6/set';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.
/** IE10 and IE11 requires the following to support `@angular/animation`. */
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/** Evergreen browsers require these. **/
import 'core-js/es/reflect';
import 'core-js/proposals/reflect-metadata';
/** ALL Firefox browsers require the following to support `@angular/animation`. **/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/***************************************************************************************************
* Zone JS is required by Angular itself.


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

@ -22,7 +22,9 @@ __karma__.loaded = function () {};
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);


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


Loading…
Cancel
Save