Closed dependabot[bot] closed 5 months ago
File | Size |
---|---|
dist/govuk-frontend-development.min.css | 113.37 KiB |
dist/govuk-frontend-development.min.js | 42.34 KiB |
packages/govuk-frontend/dist/govuk/all.bundle.js | 88.16 KiB |
packages/govuk-frontend/dist/govuk/all.bundle.mjs | 82.83 KiB |
packages/govuk-frontend/dist/govuk/all.mjs | 981 B |
packages/govuk-frontend/dist/govuk/govuk-frontend-component.mjs | 359 B |
packages/govuk-frontend/dist/govuk/govuk-frontend.min.css | 113.36 KiB |
packages/govuk-frontend/dist/govuk/govuk-frontend.min.js | 42.33 KiB |
packages/govuk-frontend/dist/govuk/i18n.mjs | 5.55 KiB |
packages/govuk-frontend/dist/govuk/init.mjs | 4.86 KiB |
File | Size (bundled) | Size (minified) |
---|---|---|
all.mjs | 78.45 KiB | 40.31 KiB |
accordion.mjs | 22.71 KiB | 12.85 KiB |
button.mjs | 5.98 KiB | 2.69 KiB |
character-count.mjs | 22.4 KiB | 9.92 KiB |
checkboxes.mjs | 5.83 KiB | 2.83 KiB |
error-summary.mjs | 7.89 KiB | 3.46 KiB |
exit-this-page.mjs | 17.1 KiB | 9.26 KiB |
header.mjs | 4.46 KiB | 2.6 KiB |
notification-banner.mjs | 6.26 KiB | 2.62 KiB |
password-input.mjs | 15.15 KiB | 7.25 KiB |
radios.mjs | 4.83 KiB | 2.38 KiB |
skip-link.mjs | 4.39 KiB | 2.18 KiB |
tabs.mjs | 10.13 KiB | 6.11 KiB |
View stats and visualisations on the review app
Action run for a15f6a5c34e26e5cdae3f7a0939d94e0134ad785
It looks like we need to set the encoding on some of the binary streams – in particular the font is being corrupted when copied, which is why we're seeing visual regressions in Percy.
I'll take a look and see if I can get it working correctly.
I've pushed a commit to fix the broken font and images.
From a quick look at the v5 blog post I can't see anything obvious that affects us (and the tests are passing…) but this could definitely do with at least one more pair of eyes before merging!
From digging through t'GitHubs it seems that Gulp has supported .mjs
files since some time in 2020:
The recent change appears to have expanded what the gulp
package exports to ESM.
We're currently doing this:
import gulp from 'gulp'
gulp.task(…)
gulp.src(…)
gulp.dest(…)
gulp.watch(…)
Whereas as of Gulp 5 we can do this:
import { task, src, dest, watch } from 'gulp'
task(…)
src(…)
dest(…)
watch(…)
Minor change, but it's an option. Weirdly, it seems like the CJS version of Gulp has supported the equivalent of this for some time, so it's only new to ESM.
(Also: It seems that using task
is discouraged by modern Gulp anyway, having been supplanted by the series
and parallel
methods, so there's potential for refactoring there anyway.)
Bumps gulp from 4.0.2 to 5.0.0.
Release notes
Sourced from gulp's releases.
... (truncated)
Changelog
Sourced from gulp's changelog.
... (truncated)
Commits
5c4c547
chore: Release 5.0.0 (#2762)bf72116
chore: Add index.mjs to files listb00de68
feat: Provide an ESM export (#2760)72668c6
chore!: Normalize repository, dropping node <10.13 support (#2758)85896d4
chore(docs): Update stream handbook link (#2711)818bd73
Docs: Remove gulp-sourcemaps because it is built-in (#2592)598f971
Docs: Fix broken link in recipe (#2571)9877de0
Docs: Guide CustomRegistries to maintain properties on tasks (fixes #2561) (#...f91c388
Docs: Remove typo in custom registry docs (#2543)df25250
Docs: Fix typo in task docs (#2524)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show