From ab201d501672e9245105d3233af5a42e54df60e4 Mon Sep 17 00:00:00 2001 From: ebraminio Date: Sun, 17 May 2015 01:16:05 +0430 Subject: [PATCH] Make manifest.json accessible https://commafeed.com/manifest.json is not accessible currently --- gulpfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index cb78cf28..f086f8bd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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']); \ No newline at end of file +gulp.task('default', ['build']);