update project to angular cli 14

This commit is contained in:
Jason Kulatunga 2022-08-25 06:41:26 -07:00
parent 268fba228a
commit 1b77e3d01b
4 changed files with 7935 additions and 16479 deletions

View File

@ -125,6 +125,9 @@
}
}
}
}},
"defaultProject": "fastenhealth"
}
},
"cli": {
"analytics": false
}
}

24393
frontend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -8,35 +8,35 @@
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"dist": "ng build --prod --watch --output-path=../dist"
"dist": "ng build --watch --output-path=../dist"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.2.5",
"@angular/common": "~10.2.5",
"@angular/compiler": "~10.2.5",
"@angular/core": "~10.2.5",
"@angular/forms": "~10.2.5",
"@angular/platform-browser": "~10.2.5",
"@angular/platform-browser-dynamic": "~10.2.5",
"@angular/router": "~10.2.5",
"@angular/animations": "^14.1.3",
"@angular/common": "^14.1.3",
"@angular/compiler": "^14.1.3",
"@angular/core": "^14.1.3",
"@angular/forms": "^14.1.3",
"@angular/platform-browser": "^14.1.3",
"@angular/platform-browser-dynamic": "^14.1.3",
"@angular/router": "^14.1.3",
"@panva/oauth4webapi": "^1.1.3",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1002.4",
"@angular/cli": "~10.2.4",
"@angular/compiler-cli": "~10.2.5",
"@angular/language-service": "~10.2.5",
"@angular-devkit/build-angular": "^14.1.3",
"@angular/cli": "^14.1.3",
"@angular/compiler-cli": "^14.1.3",
"@angular/language-service": "^14.1.3",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
@ -44,6 +44,6 @@
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.8"
"typescript": "~4.6.4"
}
}

View File

@ -37,7 +37,7 @@ export class AppComponent {
if (data.message.aud){
authorizationUrl.searchParams.set('aud', data.message.aud);
}
console.log('authorize url:', authorizationUrl);
console.log('authorize url:', authorizationUrl.toString());
});