From bb8afbdc2342b7087e8455f53cc7c1854c8e3a54 Mon Sep 17 00:00:00 2001 From: Joe Reeve Date: Sat, 7 Nov 2015 13:14:51 +0000 Subject: [PATCH] update --- build/components.html | 4 ---- build/index.html | 4 ---- client/components/home/home.html | 4 ---- gulpfile.js | 6 +++--- 4 files changed, 3 insertions(+), 15 deletions(-) diff --git a/build/components.html b/build/components.html index 382f511..634812d 100644 --- a/build/components.html +++ b/build/components.html @@ -6,10 +6,6 @@

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

-
- This is a link - This is a link -
diff --git a/build/index.html b/build/index.html index 71de7fe..02da021 100644 --- a/build/index.html +++ b/build/index.html @@ -24,10 +24,6 @@

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

-
- This is a link - This is a link -
diff --git a/client/components/home/home.html b/client/components/home/home.html index f3ab6ca..2c594fa 100644 --- a/client/components/home/home.html +++ b/client/components/home/home.html @@ -6,10 +6,6 @@

I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.

-
- This is a link - This is a link -
diff --git a/gulpfile.js b/gulpfile.js index 04041bb..a062b0e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,7 @@ var paths = { 'css':'client/**/*.css', 'siteJS':'client/*.js', 'siteCSS':'client/*.css', - 'siteHTML':'client/index.html' + 'siteHTML':'client/*.html' }; gulp.task('scripts', function(callback){ @@ -43,7 +43,7 @@ gulp.task('pageHTML', function(cb){ runSequence('componentHTML', 'index', cb); }) -gulp.task('index', function(){ +gulp.task('siteHTML', function(){ return gulp.src(paths.siteHTML).pipe(fileinclude({ prefix: '@@', basepath: './build' @@ -54,7 +54,7 @@ gulp.task('index', function(){ gulp.task('watch', function(){ gulp.watch([paths.componentJS, paths.componentHTML], ['scripts', 'pageHTML']); gulp.watch([paths.siteJS, paths.componentJS], ['scripts']); - gulp.watch([paths.siteHTML], ['index']); + gulp.watch([paths.siteHTML], ['siteHTML']); }); gulp.task('default', function() {