Skip to content

Commit

Permalink
fix server build
Browse files Browse the repository at this point in the history
  • Loading branch information
negue committed Jun 7, 2022
1 parent e11e922 commit 430dfbb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions src/app/testpage/test/test.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { createRecipeContext, generateCodeByRecipe, RecipeContext } from "../../../../projects/recipe-core/src";
import { AppService } from "../../../../projects/app-state/src/lib/state";
import {Component, OnInit} from '@angular/core';
import {createRecipeContext, generateCodeByRecipe, RecipeContext} from "@memebox/recipe-core";
import {AppService} from "@memebox/app-state";

@Component({
selector: 'app-test',
Expand Down
32 changes: 16 additions & 16 deletions src/app/testpage/testpage.module.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule, Routes } from "@angular/router";
import { TestComponent } from "./test/test.component";
import { MatFormFieldModule } from "@angular/material/form-field";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
import { MatSelectModule } from "@angular/material/select";
import { MatInputModule } from "@angular/material/input";
import { MatButtonModule } from "@angular/material/button";
import { MatIconModule } from "@angular/material/icon";
import { DynamicIframeModule } from "../shared/components/dynamic-iframe/dynamic-iframe.module";
import { CustomFormControlModule } from "@gewd/mat-utils/custom-form-control";
import { ScreenArrangeModule } from "../shared/dialogs/screen-arrange/screen-arrange.module";
import { RecipeUiModule } from "../../../projects/recipe-ui/src";
import { DirectivesModule } from "../shared/directives/directives.module";
import { MatCheckboxModule } from "@angular/material/checkbox";
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {RouterModule, Routes} from "@angular/router";
import {TestComponent} from "./test/test.component";
import {MatFormFieldModule} from "@angular/material/form-field";
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
import {MatSelectModule} from "@angular/material/select";
import {MatInputModule} from "@angular/material/input";
import {MatButtonModule} from "@angular/material/button";
import {MatIconModule} from "@angular/material/icon";
import {DynamicIframeModule} from "../shared/components/dynamic-iframe/dynamic-iframe.module";
import {CustomFormControlModule} from "@gewd/mat-utils/custom-form-control";
import {ScreenArrangeModule} from "../shared/dialogs/screen-arrange/screen-arrange.module";
import {RecipeUiModule} from "@memebox/recipe-ui";
import {DirectivesModule} from "../shared/directives/directives.module";
import {MatCheckboxModule} from "@angular/material/checkbox";

const routes: Routes = [
{
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@memebox/ui-components": ["projects/ui-components/src/projects"],
"@memebox/utils": ["projects/utils/src/public-api"],
"@memebox/version": ["src/version_info.json"],
"@memebox/recipe-ui": ["projects/recipe-ui/src/index.ts"],
"@memebox/recipe-core": ["projects/recipe-core/src/index.ts"]
"@memebox/recipe-ui": ["projects/recipe-ui/src/index"],
"@memebox/recipe-core": ["projects/recipe-core/src/index"]
}
},
"exclude": ["node_modules"]
Expand Down

0 comments on commit 430dfbb

Please sign in to comment.