Update to angular to version 8

This commit is contained in:
kostis30fyllou 2021-06-14 16:07:10 +03:00
parent 75a2fd176a
commit 4306975cba
7 changed files with 35 additions and 25 deletions

View File

@ -0,0 +1,12 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries
# You can see what browsers were selected by your queries by running:
# npx browserslist
> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.

View File

@ -13,14 +13,14 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^7.2.14", "@angular/animations": "^8.2.14",
"@angular/common": "^7.2.14", "@angular/common": "^8.2.14",
"@angular/compiler": "^7.2.14", "@angular/compiler": "^8.2.14",
"@angular/core": "^7.2.14", "@angular/core": "^8.2.14",
"@angular/forms": "^7.2.14", "@angular/forms": "^8.2.14",
"@angular/platform-browser": "^7.2.14", "@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^7.2.14", "@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^7.2.14", "@angular/router": "^8.2.14",
"core-js": "^2.4.1", "core-js": "^2.4.1",
"file-saver": "^2.0.2", "file-saver": "^2.0.2",
"jquery": "^3.4.1", "jquery": "^3.4.1",
@ -30,13 +30,13 @@
"rxjs": "^6.5.1", "rxjs": "^6.5.1",
"tslib": "^1.9.0", "tslib": "^1.9.0",
"uikit": "^3.1.5", "uikit": "^3.1.5",
"zone.js": "^0.9.1" "zone.js": "~0.9.1"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.13.0", "@angular-devkit/build-angular": "~0.803.29",
"@angular/cli": "^7.3.9", "@angular/cli": "^8.3.29",
"@angular/compiler-cli": "^7.2.14", "@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^7.2.14", "@angular/language-service": "^8.2.14",
"@types/file-saver": "^2.0.1", "@types/file-saver": "^2.0.1",
"@types/jasmine": "~3.3.13", "@types/jasmine": "~3.3.13",
"@types/jasminewd2": "~2.0.6", "@types/jasminewd2": "~2.0.6",
@ -50,9 +50,9 @@
"karma-coverage-istanbul-reporter": "^2.0.5", "karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "~2.0.1", "karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2", "karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^5.2.0", "ng-packagr": "^5.4.0",
"protractor": "~5.4.2", "protractor": "~5.4.2",
"ts-node": "~8.2.0", "ts-node": "~8.2.0",
"typescript": "~3.2.4" "typescript": "~3.5.3"
} }
} }

View File

@ -3,7 +3,7 @@ import { RouterModule, Routes } from '@angular/router';
export const AppRoutes: Routes = [ export const AppRoutes: Routes = [
{ path: '', redirectTo: '/mining/manage-profiles?communityId=Egi', pathMatch: 'full' }, { path: '', redirectTo: '/mining/manage-profiles?communityId=Egi', pathMatch: 'full' },
{ path: 'mining', loadChildren: './lazy-mining.module#LazyMiningModule'} { path: 'mining', loadChildren: () => import('./lazy-mining.module').then(m => m.LazyMiningModule)}
]; ];
@NgModule({ @NgModule({

View File

@ -3,7 +3,6 @@
"compilerOptions": { "compilerOptions": {
"outDir": "../out-tsc/app", "outDir": "../out-tsc/app",
"baseUrl": "./", "baseUrl": "./",
"module": "es2015",
"types": [] "types": []
}, },
"exclude": [ "exclude": [

View File

@ -3,8 +3,6 @@
"compilerOptions": { "compilerOptions": {
"outDir": "../out-tsc/spec", "outDir": "../out-tsc/spec",
"baseUrl": "./", "baseUrl": "./",
"module": "commonjs",
"target": "es5",
"types": [ "types": [
"jasmine", "jasmine",
"node" "node"

View File

@ -1,6 +1,7 @@
{ {
"compileOnSave": false, "compileOnSave": false,
"compilerOptions": { "compilerOptions": {
"downlevelIteration": true,
"importHelpers": true, "importHelpers": true,
"outDir": "./dist/out-tsc", "outDir": "./dist/out-tsc",
"sourceMap": true, "sourceMap": true,
@ -8,7 +9,7 @@
"moduleResolution": "node", "moduleResolution": "node",
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"target": "es5", "target": "es2015",
"typeRoots": [ "typeRoots": [
"node_modules/@types" "node_modules/@types"
], ],
@ -16,7 +17,7 @@
"es2017", "es2017",
"dom" "dom"
], ],
"module": "es2015", "module": "esnext",
"baseUrl": "./" "baseUrl": "./"
} }
} }

View File

@ -125,12 +125,12 @@
"app", "app",
"kebab-case" "kebab-case"
], ],
"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,