summaryrefslogtreecommitdiffstats
path: root/html/gulpfile.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 08:14:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 08:14:42 +0000
commit6963f5f48ed68cb42b92e40c84014bd12cd377fc (patch)
treec2abdd80665f8494280a65417a9c21156ff41125 /html/gulpfile.js
parentAdding upstream version 1.7.3. (diff)
downloadttyd-6963f5f48ed68cb42b92e40c84014bd12cd377fc.tar.xz
ttyd-6963f5f48ed68cb42b92e40c84014bd12cd377fc.zip
Adding upstream version 1.7.7.upstream/1.7.7upstream
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(