Skip to content

Commit

Permalink
Fixes aot build
Browse files Browse the repository at this point in the history
  • Loading branch information
david-on-github committed Feb 6, 2020
1 parent 8217340 commit b4f0e7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.3] - 2020-02-06
## [2.0.2] - 2020-02-06
### Fixed
- Injection Error
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-oidc-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-oidc-client",
"version": "2.0.2",
"version": "2.0.3",
"main": "index.js",
"description": "An Angular package wrapping oidc-client library to manage authentication with OpenID Connect (OIDC) and OAuth2 in a reactive way using NgRx.",
"author": "Alexandru Gogan & David Turner",
Expand Down
3 changes: 2 additions & 1 deletion projects/ng-oidc-client/src/lib/facades/oidc.facade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { User as OidcUser } from 'oidc-client';
import { Observable } from 'rxjs';
import { filter, take } from 'rxjs/operators';
import { OidcActions } from '../actions';
import { Config, OidcEvent, OIDC_CONFIG, RequestArugments } from '../models';
import { Config, OIDC_CONFIG } from '../models/config.model';
import { OidcEvent, RequestArugments } from '../models';
import { toSerializedUser } from '../oidc.utils';
import { ErrorState, OidcState } from '../reducers';
import { OidcSelectors } from '../selectors';
Expand Down

0 comments on commit b4f0e7d

Please sign in to comment.