Skip to content

Commit

Permalink
fix(gulp) - fixed gulp build
Browse files Browse the repository at this point in the history
  • Loading branch information
ESadouski committed Dec 13, 2016
1 parent 0b75c2d commit 7bb38dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gulp/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ gulp.task('html', ['inject', 'partials'], function () {
addRootSlash: false
};

var htmlFilter = $.filter('*.html', { restore: true });
var jsFilter = $.filter('**/*.js', { restore: true });
var cssFilter = $.filter('**/*.css', { restore: true });
var htmlFilter = $.filter('*.html', { restore: true, dot:true});
var jsFilter = $.filter('**/*.js', { restore: true, dot:true});
var cssFilter = $.filter('**/*.css', { restore: true, dot:true});
var assets;

return gulp.src(path.join(conf.paths.tmp, '/serve/*.html'))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"gulp-sass": "~2.3.2",
"gulp-shell": "^0.5.2",
"gulp-size": "~2.1.0",
"gulp-sourcemaps": "~1.9.1",
"gulp-uglify": "~1.4.1",
"gulp-sourcemaps": "~1.6.0",
"gulp-uglify": "~2.0.0",
"gulp-useref": "~1.3.0",
"gulp-util": "~3.0.6",
"gulp-zip": "^3.0.2",
Expand Down

0 comments on commit 7bb38dd

Please sign in to comment.