summaryrefslogtreecommitdiffstats
path: root/html/gulpfile.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:54:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:54:51 +0000
commitd83891d2823707ebcdd5b6ce505983c8cc305b0d (patch)
tree91be853b67b04aea4f09fb2b1063544865b79211 /html/gulpfile.js
parentReleasing progress-linux version 1.7.4-1~progress7.99u1. (diff)
downloadttyd-d83891d2823707ebcdd5b6ce505983c8cc305b0d.tar.xz
ttyd-d83891d2823707ebcdd5b6ce505983c8cc305b0d.zip
Merging upstream version 1.7.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'html/gulpfile.js')
-rw-r--r--html/gulpfile.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/html/gulpfile.js b/html/gulpfile.js
index b1a4aad..54f583f 100644
--- a/html/gulpfile.js
+++ b/html/gulpfile.js
@@ -37,7 +37,11 @@ task('clean', () => {
});
task('inline', () => {
- return src('dist/index.html').pipe(inlineSource()).pipe(rename('inline.html')).pipe(dest('dist/'));
+ const options = {
+ compress: false,
+ };
+
+ return src('dist/index.html').pipe(inlineSource(options)).pipe(rename('inline.html')).pipe(dest('dist/'));
});
task(