Skip to content

Commit

Permalink
fixed ngcc error (#11)
Browse files Browse the repository at this point in the history
- fixed up import/export statements to fix an error when compiling with ngcc
- added .prettierrc
  • Loading branch information
sei-aschlackman authored Feb 23, 2021
1 parent 105f36d commit 7a4906a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tabWidth: 2
singleQuote: true
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const comnAuthRoutes: Routes = [
ComnAuthCallbackComponent,
ComnAuthCallbackSilentComponent,
ComnAuthLogoutComponent,
ComnAuthCallbackComponent,
],
providers: [
ComnAuthService,
Expand All @@ -41,7 +42,12 @@ const comnAuthRoutes: Routes = [
ComnAuthStore,
],
imports: [CommonModule, RouterModule.forChild(comnAuthRoutes)],
exports: [],
exports: [
ComnAuthCallbackComponent,
ComnAuthCallbackSilentComponent,
ComnAuthLogoutComponent,
ComnAuthCallbackComponent,
],
})
export class ComnAuthModule {
constructor(@Optional() @SkipSelf() parentModule: ComnAuthModule) {
Expand Down
1 change: 1 addition & 0 deletions projects/@crucible-common/src/lib/comn-auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export * from './components/comn-auth-logout/comn-auth-logout.component';
export * from './services/comn-auth.service';
export * from './services/comn-auth-interceptor.service';
export * from './services/comn-auth-guard.service';
export * from './comn-auth.module';
1 change: 1 addition & 0 deletions projects/@crucible-common/src/lib/comn-settings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@

export * from './models/comn-settings';
export * from './services/comn-settings.service';
export * from './comn-settings.module';
2 changes: 0 additions & 2 deletions projects/@crucible-common/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
* The Order of these exports in this file matters. Please add any exports to the bottom of the file
*/
export * from './lib/comn-settings';
export * from './lib/comn-settings/comn-settings.module';
export * from './lib/comn-auth';
export * from './lib/comn-auth/comn-auth.module';

0 comments on commit 7a4906a

Please sign in to comment.