make e2e build faster

This commit is contained in:
Andrew
2015-04-25 14:45:21 -05:00
parent 8f4b406831
commit 61eb9b06c7
24 changed files with 114 additions and 111 deletions

View File

@@ -0,0 +1,18 @@
import {Component, View as NgView, bootstrap} from 'angular2/angular2'
import {Nav} from 'ionic/components/nav/nav'
import {Log} from 'ionic/util'
import {FirstPage} from 'pages/first-page'
@Component({ selector: '[ion-app]' })
@NgView({
directives: [Nav],
templateUrl: 'main.html'
})
class IonicApp {
constructor() {
this.initial = FirstPage
console.log('IonicApp Start')
}
}
bootstrap(IonicApp)