diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:14:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 08:14:56 +0000 |
commit | 62010aafd4014c19d4d0cf36f01d3c53b43c5e7b (patch) | |
tree | 6f1fd3cfe312292e359bb7befa4b44a5fe986182 /html/gulpfile.js | |
parent | Releasing debian version 1.7.3-2. (diff) | |
download | ttyd-62010aafd4014c19d4d0cf36f01d3c53b43c5e7b.tar.xz ttyd-62010aafd4014c19d4d0cf36f01d3c53b43c5e7b.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.js | 6 |
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( |