Skip to content

Commit

Permalink
chore(generators): update Ionic imports
Browse files Browse the repository at this point in the history
To be in line with 1cfca53.
  • Loading branch information
tlancina committed Feb 22, 2016
1 parent b53d707 commit 1495a13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tooling/generators/component/component.tmpl.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Component} from 'angular2/core';
import {IONIC_DIRECTIVES} from 'ionic/ionic';
import {IONIC_DIRECTIVES} from 'ionic-angular';

/*
Generated class for the <%= jsClassName %> component.
Expand Down
2 changes: 1 addition & 1 deletion tooling/generators/page/page.tmpl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Page, NavController} from 'ionic/ionic';
import {Page, NavController} from 'ionic-angular';
import {Inject} from 'angular2/core';

/*
Expand Down
2 changes: 1 addition & 1 deletion tooling/generators/tabs/tabs.tmpl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {NavController, Page} from 'ionic/ionic';
import {NavController, Page} from 'ionic-angular';
import {Inject} from 'angular2/core';
<% _.forEach(tabs, function(tab) { %>import {<%= tab.jsClassName %>} from '../<%= tab.fileName %>/<%= tab.fileName %>';
<% }); %>
Expand Down

0 comments on commit 1495a13

Please sign in to comment.