Make manifest.json accessible

https://commafeed.com/manifest.json is not accessible currently
This commit is contained in:
ebraminio
2015-05-17 01:16:05 +04:30
parent efa38d5ee9
commit ab201d5016

View File

@@ -26,7 +26,8 @@ gulp.task('favicons', function() {
var favicons_png = SRC_DIR + '*.png';
var favicons_ico = SRC_DIR + '*.ico';
var favicons_svg = SRC_DIR + '*.svg';
return gulp.src([favicons_png, favicons_ico, favicons_svg]).pipe(gulp.dest(BUILD_DIR));
var manifest = SRC_DIR + 'manifest.json';
return gulp.src([favicons_png, favicons_ico, favicons_svg, manifest]).pipe(gulp.dest(BUILD_DIR));
});
gulp.task('sass', function() {
@@ -110,4 +111,4 @@ gulp.task('serve', function() {
});
gulp.task('dev', ['build-dev', 'watch', 'serve']);
gulp.task('default', ['build']);
gulp.task('default', ['build']);