Commit 3752bc2a authored by Administrator's avatar Administrator

Upgrades Angular to version 8.2

Angular version has been upgraded to 8.2. In addition, "npm audit fix"
has been run to fix any security issue.
parent a20f894c
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"name": "daa-example", "name": "daa-example",
"version": "0.2.0-alpha.4", "version": "0.2.0-alpha.5",
"scripts": { "scripts": {
"ng": "./node_modules/.bin/ng", "ng": "./node_modules/.bin/ng",
"start": "./node_modules/.bin/ng serve", "start": "./node_modules/.bin/ng serve",
...@@ -11,31 +11,33 @@ ...@@ -11,31 +11,33 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~7.1.0", "@angular/animations": "~8.2.14",
"@angular/cdk": "^7.2.2", "@angular/cdk": "^7.2.2",
"@angular/common": "~7.1.0", "@angular/common": "~8.2.14",
"@angular/compiler": "~7.1.0", "@angular/compiler": "~8.2.14",
"@angular/core": "~7.1.0", "@angular/core": "~8.2.14",
"@angular/forms": "~7.1.0", "@angular/forms": "~8.2.14",
"@angular/platform-browser": "~7.1.0", "@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~7.1.0", "@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~7.1.0", "@angular/router": "~8.2.14",
"angular2-notifications": "^2.0.0", "angular2-notifications": "^3.0.0",
"bootstrap": "^4.2.1", "bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.1",
"core-js": "^2.5.4", "core-js": "^2.5.4",
"rxjs": "~6.3.3", "rxjs": "~6.5.4",
"tslib": "^1.9.0", "tslib": "^1.9.0",
"zone.js": "~0.8.26" "zone.js": "~0.9.1"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^0.13.0", "@angular-devkit/build-angular": "~0.803.25",
"@angular/cli": "~7.1.0", "@angular/cli": "~8.3.25",
"@angular/compiler-cli": "~7.1.0", "@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~7.1.0", "@angular/language-service": "~8.2.14",
"@types/jasmine": "~2.8.8", "@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3", "@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4", "@types/node": "~8.9.4",
"codelyzer": "~4.5.0", "codelyzer": "^5.0.1",
"jasmine-core": "~2.99.1", "jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1", "jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1", "karma": "~3.1.1",
...@@ -46,6 +48,6 @@ ...@@ -46,6 +48,6 @@
"protractor": "~5.4.0", "protractor": "~5.4.0",
"ts-node": "~7.0.0", "ts-node": "~7.0.0",
"tslint": "~5.11.0", "tslint": "~5.11.0",
"typescript": "~3.1.6" "typescript": "~3.5.3"
} }
} }
...@@ -43,7 +43,7 @@ const routes: Routes = [ ...@@ -43,7 +43,7 @@ const routes: Routes = [
}, },
{ {
path: 'people', path: 'people',
loadChildren: './modules/people/people.module#PeopleModule' loadChildren: () => import('./modules/people/people.module').then(m => m.PeopleModule)
} }
] ]
} }
......
...@@ -2,15 +2,16 @@ ...@@ -2,15 +2,16 @@
"compileOnSave": false, "compileOnSave": false,
"compilerOptions": { "compilerOptions": {
"baseUrl": "./", "baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc", "outDir": "./dist/out-tsc",
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,
"module": "es2015", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "node",
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"importHelpers": true, "importHelpers": true,
"target": "es5", "target": "es2015",
"typeRoots": [ "typeRoots": [
"node_modules/@types" "node_modules/@types"
], ],
......
...@@ -118,12 +118,12 @@ ...@@ -118,12 +118,12 @@
"check-type" "check-type"
], ],
"no-output-on-prefix": true, "no-output-on-prefix": true,
"use-input-property-decorator": true, "no-inputs-metadata-property": true,
"use-output-property-decorator": true, "no-outputs-metadata-property": true,
"use-host-property-decorator": true, "no-host-metadata-property": true,
"no-input-rename": true, "no-input-rename": true,
"no-output-rename": true, "no-output-rename": true,
"use-life-cycle-interface": true, "use-lifecycle-interface": true,
"use-pipe-transform-interface": true, "use-pipe-transform-interface": true,
"component-class-suffix": true, "component-class-suffix": true,
"directive-class-suffix": true "directive-class-suffix": true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment