From 67c53955a202463b96517db62b93a9c2ecd269a4 Mon Sep 17 00:00:00 2001 From: jbavari Date: Mon, 5 Oct 2015 20:12:36 -0600 Subject: [PATCH 1/2] Fix(list): Update list items to show all variations of list + borders --- ionic/components/list/test/repeat-headers/index.ts | 2 +- ionic/components/list/test/repeat-headers/main.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ionic/components/list/test/repeat-headers/index.ts b/ionic/components/list/test/repeat-headers/index.ts index 3ad6100272..eb00e56260 100644 --- a/ionic/components/list/test/repeat-headers/index.ts +++ b/ionic/components/list/test/repeat-headers/index.ts @@ -7,7 +7,7 @@ import {App} from 'ionic/ionic'; class IonicApp { constructor() { this.people = [ - {"name": "Adam Bradley", "components": [ "app", "badge", "button", "card"]}, + {"name": "Adam Bradley", "components": [ "all the things"]}, {"name": "Max Lynch", "components": [ "checkbox", "content", "form"]}, {"name": "Tim Lancina", "components": [ "tabs"]} ]; diff --git a/ionic/components/list/test/repeat-headers/main.html b/ionic/components/list/test/repeat-headers/main.html index 82d5b1319d..a1b8088a8d 100644 --- a/ionic/components/list/test/repeat-headers/main.html +++ b/ionic/components/list/test/repeat-headers/main.html @@ -1,13 +1,13 @@ List Headers Borders - + {{person.name}} - {{component}} + {{component}}
From f2fd1ea3147b856ea0c9b4cd2d85e178b9810331 Mon Sep 17 00:00:00 2001 From: jbavari Date: Mon, 5 Oct 2015 20:13:22 -0600 Subject: [PATCH 2/2] chore(gulp): Add gulp src.link to watch files, run src, so users who have npm linked files will update their sass/ts/js --- gulpfile.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index c8c01a47cc..97e8f14c1c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -344,6 +344,17 @@ gulp.task('copy.web-animations', function() { .pipe(gulp.dest('dist/js')); }) +gulp.task('src.link', function(done) { + watch(['/ionic/**/*.ts', 'ionic/**/*.scss'], function(file) { + gulp.start('src'); + }); + + + watch('demos/**/*', function() { + gulp.start('demos:all'); + }); +}) + gulp.task('src', function(done){ runSequence( 'clean',