Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
tborychowski committed Apr 14, 2024
1 parent f25cf74 commit 28d3a48
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .stylelintignore

This file was deleted.

Binary file modified docs/logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/prime_light-webfont.woff
Binary file not shown.
Binary file modified docs/prime_light-webfont.woff2
Binary file not shown.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ export function html () {
let script = isProd ? analyticsScript : reloadScript;
const version = getVersion();
script += `\n\t<script>window.UI_VERSION='${version}';</script>`;
return src(PATHS.HTML)
return src(PATHS.HTML, { encoding: false })
.pipe(inject.replace(comment, script))
.pipe(dest(PATHS.DIST));
}


export function assets () {
return src(PATHS.ASSETS).pipe(dest(PATHS.DIST));
return src(PATHS.ASSETS, { encoding: false }).pipe(dest(PATHS.DIST));
}


export function externals () {
return src(PATHS.EXTERNAL).pipe(dest(PATHS.DIST));
return src(PATHS.EXTERNAL, { encoding: false }).pipe(dest(PATHS.DIST));
}


Expand Down

0 comments on commit 28d3a48

Please sign in to comment.