chore(build): demos build via gulp

demos build via gulp
This commit is contained in:
Dan Bucholtz
2016-09-16 13:58:56 -05:00
parent 9d563f5438
commit 3d3a95f164
7 changed files with 136 additions and 26 deletions

View File

@ -1,4 +1,4 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { Component } from '@angular/core';
import { LoadingController, NavController } from 'ionic-angular';
@Component({
@ -122,9 +122,7 @@ export class Page2 {}
@Component({
template: '<ion-nav [root]="root"></ion-nav>',
styleUrls: ['styles.css'],
encapsulation: ViewEncapsulation.None
template: '<ion-nav [root]="root"></ion-nav>'
})
export class ApiDemoApp {
root = Page1;

View File

@ -1,11 +0,0 @@
{
"name": "ionic-demos",
"private": true,
"version": "1.0.0",
"description": "demos of ionic framework",
"author": "Ionic Team <hi@ionic.io> (http://ionic.io)",
"license": "MIT",
"dependencies": {
"ionic-angular": "nightly"
}
}

View File

@ -1,4 +1,4 @@
import { Component, ElementRef, ViewChild, ViewEncapsulation } from '@angular/core';
import { Component, ElementRef, ViewChild } from '@angular/core';
import { NavParams, PopoverController } from 'ionic-angular';
@Component({
@ -154,9 +154,7 @@ export class ApiDemoPage {
}
@Component({
template: '<ion-nav [root]="root"></ion-nav>',
styleUrls: ['style.css'],
encapsulation: ViewEncapsulation.None
template: '<ion-nav [root]="root"></ion-nav>'
})
export class ApiDemoApp {
root = ApiDemoPage;

View File

@ -1,5 +1,4 @@
import { Component, NgModule, ViewEncapsulation } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { Component } from '@angular/core';
@Component({
template: '<div>johnny utah</div>',
@ -8,9 +7,7 @@ export class TabPage {}
@Component({
templateUrl: 'page.html',
styleUrls: ['style.css'],
encapsulation: ViewEncapsulation.None
templateUrl: 'page.html'
})
export class ApiDemoPage {
root = TabPage;