Skip to content

Commit

Permalink
Fix encoding of assets when Gulp copies them for release
Browse files Browse the repository at this point in the history
  • Loading branch information
romaricpascal committed Jul 12, 2024
1 parent 2852b38 commit fd605a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/govuk-frontend/tasks/build/release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default (options) =>
gulp
.src('govuk/assets/**/*', {
base: join(options.srcPath, 'govuk'),
cwd: options.srcPath
cwd: options.srcPath,
encoding: false
})
.pipe(gulp.dest(options.destPath))
),
Expand Down

0 comments on commit fd605a1

Please sign in to comment.