mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
Fix: gulp wasn't building app_layout.html
This commit is contained in:
parent
e60caf87a6
commit
abde67f2d9
@ -17,7 +17,7 @@ var paths = {
|
||||
scripts: [yeoman.app + '/scripts/**/*.js'],
|
||||
styles: [yeoman.app + '/styles/**/*.css'],
|
||||
views: {
|
||||
main: [yeoman.app + '/index.html', 'app/vendor_scripts.html', 'app/login.html', 'app/embed.html'],
|
||||
main: [yeoman.app + '/index.html', 'app/vendor_scripts.html', 'app/login.html', 'app/embed.html', 'app/app_layout.html'],
|
||||
files: [yeoman.app + '/views/**/*.html']
|
||||
}
|
||||
};
|
||||
@ -84,7 +84,7 @@ gulp.task('client:build', ['html', 'styles'], function () {
|
||||
.pipe(cssFilter)
|
||||
.pipe($.minifyCss({cache: true}))
|
||||
.pipe(cssFilter.restore())
|
||||
.pipe(new $.revAll({dontRenameFile: ['.html'], dontUpdateReference: ['vendor_scripts.html']}).revision())
|
||||
.pipe(new $.revAll({dontRenameFile: ['.html'], dontUpdateReference: ['vendor_scripts.html', 'app_layout.html']}).revision())
|
||||
.pipe(gulp.dest(yeoman.dist));
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user