From 4b339e2fca4987988c6125c140aa702cea93adb8 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Fri, 20 Mar 2015 23:58:21 -0500 Subject: [PATCH] fix(demos): properly build component examples Incorrect glob in gulpfile.js --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 64f32ea8f9..11033303f3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -139,7 +139,7 @@ gulp.task('angular2', function () { gulp.task('demo', function () { - gulp.src(["./src/components/*/examples/*/index.html"]) + gulp.src(["./src/components/**/examples/**/index.html"]) .pipe(debug({title: 'Generating Demo:'})) .pipe(wrap({ src: './scripts/examples/template/index.html'})) .pipe(rename(function(file) {