Skip to content

Commit 65ecd92

Browse files
author
Ives van Hoorne
committed
Add manifest.json to the bundle
1 parent 46f9b5b commit 65ecd92

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gulpfile.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ gulp.task('homepage', function() {
88
return gulp.src('packages/homepage/public/**/*').pipe(gulp.dest('www'));
99
});
1010

11-
gulp.task('default', ['app', 'homepage']);
11+
gulp.task('manifest', function() {
12+
return gulp.src('packages/app/public/manifest.json').pipe(gulp.dest('www'));
13+
});
14+
15+
gulp.task('default', ['app', 'homepage', 'manifest']);

0 commit comments

Comments
 (0)