Skip to content

Commit

Permalink
fix(bundling): fix EventEmitter import
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Jun 14, 2018
1 parent 04e807f commit 8e47101
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions core/src/components/route-redirect/route-redirect.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Component, Event, Prop } from '@stencil/core';
import { EventEmitter } from 'ionicons/dist/types/stencil.core';
import { Component, Event, EventEmitter, Prop } from '@stencil/core';

@Component({
tag: 'ion-route-redirect'
Expand Down
3 changes: 1 addition & 2 deletions core/src/components/route/route.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Component, Event, Prop, Watch } from '@stencil/core';
import { EventEmitter } from 'ionicons/dist/types/stencil.core';
import { Component, Event, EventEmitter, Prop, Watch } from '@stencil/core';

@Component({
tag: 'ion-route'
Expand Down

0 comments on commit 8e47101

Please sign in to comment.