Skip to content

Commit

Permalink
Fix compilation on fresh checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Raible committed Nov 23, 2019
1 parent f9b1dd3 commit 5160bdd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 3 additions & 0 deletions demo/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ testem.log
# System Files
.DS_Store
Thumbs.db

# package-lock.json causes CI issues, so ignore
package-lock.json
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "~12.12.11",
"angular-crud": "file:../angular-crud/angular-crud-0.1.4.tgz",
"angular-crud": "^0.1.3",
"codelyzer": "~5.2.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
Expand Down
4 changes: 0 additions & 4 deletions demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,13 @@ import {APP_EXTRA_OPTIONS, APP_ROUTES} from './app.routes';
import {HomeComponent} from './home/home.component';
import {NavbarComponent} from './navbar/navbar.component';
import {SidebarComponent} from './sidebar/sidebar.component';
import { HotelModule } from './src/app/hotel.module';

@NgModule({
imports: [
BrowserModule,
HttpClientModule,
FlightModule,

RouterModule.forRoot([...APP_ROUTES], {...APP_EXTRA_OPTIONS}),

HotelModule,
],
declarations: [
AppComponent,
Expand Down

0 comments on commit 5160bdd

Please sign in to comment.