aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-11 12:25:49 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-11 12:25:49 +0100
commitc5b44c0259387030f9e3d31ae1db8903a95b6b67 (patch)
tree123e726411a33c2f0cea1eb6529d7462636c315e /gulpfile.babel.js
parentMerge pull request #421 from meetfranz/feature/bugfixing (diff)
downloadferdium-app-c5b44c0259387030f9e3d31ae1db8903a95b6b67.tar.gz
ferdium-app-c5b44c0259387030f9e3d31ae1db8903a95b6b67.tar.zst
ferdium-app-c5b44c0259387030f9e3d31ae1db8903a95b6b67.zip
always initialize ContextMenuBuilder but not spellchecker
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index d947974b3..b50001b2d 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -110,7 +110,11 @@ export function watch() {
110} 110}
111 111
112export function webserver() { 112export function webserver() {
113 gulp.src(paths.dest) 113 gulp.src([
114 paths.dest,
115 `!${paths.dest}/electron/**`,
116 `!${paths.dest}/webview/**`,
117 ])
114 .pipe(server({ 118 .pipe(server({
115 livereload: true, 119 livereload: true,
116 })); 120 }));