Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/mfe1/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Component } from '@angular/core';
import { NxWelcomeComponent } from './nx-welcome.component';

@Component({
selector: 'angular-architects-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
imports: [NxWelcomeComponent],
})
export class AppComponent {
title = 'mfe1';
Expand Down
14 changes: 0 additions & 14 deletions apps/mfe1/src/app/app.module.ts

This file was deleted.

7 changes: 2 additions & 5 deletions apps/mfe1/src/app/demo/demo.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
AuthService,
PlaygroundLibModule,
} from '@angular-architects/playground-lib';
import { AuthService } from '@angular-architects/playground-lib';
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';

Expand All @@ -10,7 +7,7 @@ import { Component } from '@angular/core';
selector: 'angular-architects-demo',
templateUrl: './demo.component.html',
styleUrls: ['./demo.component.css'],
imports: [CommonModule, PlaygroundLibModule],
imports: [CommonModule],
})
export class DemoComponent {
title = 'Hallo';
Expand Down
8 changes: 3 additions & 5 deletions apps/mfe1/src/bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';

if (environment.production) {
enableProdMode();
}

platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));
bootstrapApplication(AppComponent).catch(console.error);
2 changes: 2 additions & 0 deletions apps/mfe2/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Component } from '@angular/core';
import { NxWelcomeComponent } from './nx-welcome.component';

@Component({
selector: 'angular-architects-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
imports: [NxWelcomeComponent],
})
export class AppComponent {
title = 'mfe2';
Expand Down
13 changes: 0 additions & 13 deletions apps/mfe2/src/app/app.module.ts

This file was deleted.

8 changes: 3 additions & 5 deletions apps/mfe2/src/bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';

if (environment.production) {
enableProdMode();
}

platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));
bootstrapApplication(AppComponent).catch(console.error);
12 changes: 0 additions & 12 deletions apps/playground/src/app/app.module.ts

This file was deleted.

8 changes: 3 additions & 5 deletions apps/playground/src/bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';

if (environment.production) {
enableProdMode();
}

platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));
bootstrapApplication(AppComponent).catch(console.error);
3 changes: 1 addition & 2 deletions libs/playground-lib/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export * from './lib/playground-lib.module';
export * from './lib/auth.service';
export * from './lib/auth.component';
export * from './lib/auth.service';
10 changes: 0 additions & 10 deletions libs/playground-lib/src/lib/playground-lib.module.ts

This file was deleted.