Skip to content

Commit 41a6ea0

Browse files
committed
update to angular 9
1 parent 10204d2 commit 41a6ea0

File tree

8 files changed

+15529
-42
lines changed

8 files changed

+15529
-42
lines changed

Diff for: package-lock.json

+15,494
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+15-13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"ng": "ng",
77
"start": "ng serve --project sample -o",
88
"build": "ng build --prod --project lib && npm run copy:readme && npm run docs",
9+
"build:jwks": "ng build angular-oauth2-oidc-jwks --ts-config tsconfig.npm.json",
910
"test": "ng test",
1011
"lint": "ng lint",
1112
"e2e": "ng e2e",
@@ -19,32 +20,33 @@
1920
},
2021
"private": true,
2122
"dependencies": {
22-
"@angular/animations": "9.0.0",
23-
"@angular/common": "9.0.0",
24-
"@angular/compiler": "9.0.0",
25-
"@angular/core": "9.0.0",
26-
"@angular/elements": "9.0.0",
27-
"@angular/forms": "9.0.0",
28-
"@angular/platform-browser": "9.0.0",
29-
"@angular/platform-browser-dynamic": "9.0.0",
30-
"@angular/router": "9.0.0",
23+
"@angular/animations": "9.0.5",
24+
"@angular/common": "9.0.5",
25+
"@angular/compiler": "9.0.5",
26+
"@angular/core": "9.0.5",
27+
"@angular/elements": "9.0.5",
28+
"@angular/forms": "9.0.5",
29+
"@angular/platform-browser": "9.0.5",
30+
"@angular/platform-browser-dynamic": "9.0.5",
31+
"@angular/router": "9.0.5",
3132
"@webcomponents/custom-elements": "^1.2.4",
33+
"angular-oauth2-oidc": "^9.0.0",
3234
"base64-js": "^1.3.0",
3335
"bootstrap": "^3.3.7",
3436
"jsrsasign": "^8.0.12",
3537
"rxjs": "6.5.4",
3638
"rxjs-compat": "^6.5.2",
3739
"text-encoder-lite": "^1.0.1",
3840
"tsickle": "^0.35.0",
39-
"tslib": "^1.10.0",
40-
"zone.js": "^0.9.1"
41+
"tslib": "^1.11.1",
42+
"zone.js": "^0.10.2"
4143
},
4244
"devDependencies": {
4345
"@angular-devkit/build-angular": "~0.900.1",
4446
"@angular-devkit/build-ng-packagr": "~0.900.1",
4547
"@angular/cli": "^9.0.1",
46-
"@angular/compiler-cli": "9.0.0",
47-
"@angular/language-service": "9.0.0",
48+
"@angular/compiler-cli": "9.0.5",
49+
"@angular/language-service": "9.0.5",
4850
"@compodoc/compodoc": "^1.1.11",
4951
"@types/jasmine": "~3.3.13",
5052
"@types/jasminewd2": "~2.0.6",

Diff for: projects/angular-oauth2-oidc-jwks/README.md

+2-23
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
1-
# AngularOauth2OidcJwks
1+
# angular-oauth2-oidc-jwks
22

3-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.1.
4-
5-
## Code scaffolding
6-
7-
Run `ng generate component component-name --project angular-oauth2-oidc-jwks` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project angular-oauth2-oidc-jwks`.
8-
> Note: Don't forget to add `--project angular-oauth2-oidc-jwks` or else it will be added to the default project in your `angular.json` file.
9-
10-
## Build
11-
12-
Run `ng build angular-oauth2-oidc-jwks` to build the project. The build artifacts will be stored in the `dist/` directory.
13-
14-
## Publishing
15-
16-
After building your library with `ng build angular-oauth2-oidc-jwks`, go to the dist folder `cd dist/angular-oauth2-oidc-jwks` and run `npm publish`.
17-
18-
## Running unit tests
19-
20-
Run `ng test angular-oauth2-oidc-jwks` to execute the unit tests via [Karma](https://karma-runner.github.io).
21-
22-
## Further help
23-
24-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
3+
``JwksValidationHandler`` for ``angular-oauth2-odic``. Only needed for implicit flow.

Diff for: projects/angular-oauth2-oidc-jwks/ng-package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"dest": "../../dist/angular-oauth2-oidc-jwks",
44
"lib": {
55
"entryFile": "src/public-api.ts"
6-
}
6+
},
7+
"whitelistedNonPeerDependencies": [
8+
"jsrsasign"
9+
]
710
}

Diff for: projects/lib/ng-package.prod.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
"dest": "../../dist/lib",
44
"lib": {
55
"entryFile": "src/public_api.ts"
6-
},
7-
"whitelistedNonPeerDependencies": [
8-
"jsrsasign"
9-
]
6+
}
107
}

Diff for: projects/quickstart-demo/src/app/app.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component } from '@angular/core';
22
import { OAuthService } from 'angular-oauth2-oidc';
33
import { filter } from 'rxjs/operators';
44
import { authCodeFlowConfig } from './auth.config';
5+
import { JwksValidationHandler } from 'angular-oauth2-oidc-jwks';
56

67
@Component({
78
selector: 'app-root',

Diff for: tsconfig.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
]
3232

3333

34-
}
34+
},
35+
},
36+
"angularCompilerOptions": {
37+
"enableIvy": false
3538
}
39+
3640
}

Diff for: tsconfig.npm.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"paths": {
5+
},
6+
}
7+
}

0 commit comments

Comments
 (0)