Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade gulp to version 5.0.0 #18197

Merged
merged 1 commit into from
Jun 1, 2024
Merged

Commits on May 31, 2024

  1. Upgrade gulp to version 5.0.0

    This is a major version bump, and the changelog at
    https://github.com/gulpjs/gulp/releases/tag/v5.0.0 indicates one
    breaking change that impacts us, namely that streams are now by default
    interpreted/transformed to UTF-8 encoding. This breaks `gulp.src` calls
    that work on binary files such as images or CMaps, but is fortunately
    easy to fix for us by disabling re-encoding for all `gulp.src` calls
    (see gulpjs/gulp#2764 (comment)
    for more information). This restores the previous behavior of copying
    the files as-is without Gulp performing any transformations to it, which
    is what we want because Gulp is only used for bundling and we make sure
    that the source files have the right encoding.
    timvandermeij committed May 31, 2024
    Configuration menu
    Copy the full SHA
    d25b527 View commit details
    Browse the repository at this point in the history