Skip to content

Commit

Permalink
fix: adjust @igo2/auth path (#1153)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed Mar 12, 2024
1 parent 36f99be commit 03b8848
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 55 deletions.
90 changes: 45 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
"@angular/platform-browser-dynamic": "^17.0.7",
"@angular/router": "^17.0.7",
"@angular/service-worker": "^17.0.7",
"@igo2/auth": "^17.0.0-next.2",
"@igo2/common": "^17.0.0-next.2",
"@igo2/context": "^17.0.0-next.2",
"@igo2/core": "^17.0.0-next.2",
"@igo2/geo": "^17.0.0-next.2",
"@igo2/integration": "^17.0.0-next.2",
"@igo2/utils": "^17.0.0-next.2",
"@igo2/auth": "^17.0.0-next.3",
"@igo2/common": "^17.0.0-next.3",
"@igo2/context": "^17.0.0-next.3",
"@igo2/core": "^17.0.0-next.3",
"@igo2/geo": "^17.0.0-next.3",
"@igo2/integration": "^17.0.0-next.3",
"@igo2/utils": "^17.0.0-next.3",
"core-js": "^3.32.2",
"hammerjs": "^2.0.8",
"ol": "^7.5.2",
Expand Down
3 changes: 2 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Component, Inject, OnInit } from '@angular/core';
import { Meta, Title } from '@angular/platform-browser';
import { NavigationEnd, Router } from '@angular/router';

import { AuthFormComponent, AuthOptions } from '@igo2/auth';
import { AuthOptions } from '@igo2/auth';
import { AuthFormComponent } from '@igo2/auth/form';
import { SpinnerComponent, StopPropagationDirective } from '@igo2/common';
import { ConfigService } from '@igo2/core/config';
import { LanguageService } from '@igo2/core/language';
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { provideAnimations } from '@angular/platform-browser/animations';
import { provideRouter } from '@angular/router';
import { ServiceWorkerModule } from '@angular/service-worker';

import { IgoAuthModule } from '@igo2/auth';
import { IgoAuthFormModule } from '@igo2/auth/form';
import { IgoCoreModule } from '@igo2/core';
import { ConfigService, provideConfigOptions } from '@igo2/core/config';
import { provideRootTranslation } from '@igo2/core/language';
Expand Down Expand Up @@ -48,7 +48,7 @@ bootstrapApplication(AppComponent, {
importProvidersFrom(
BrowserModule,
IgoCoreModule.forRoot(),
IgoAuthModule.forRoot(),
IgoAuthFormModule.forRoot(),
IgoMessageModule,
PortalModule,
ServiceWorkerModule.register('ngsw-worker.js', {
Expand Down

0 comments on commit 03b8848

Please sign in to comment.