openjdk-website
openjdk-website copied to clipboard
Bump gulp-sass from 5.1.0 to 6.0.1
Bumps gulp-sass from 5.1.0 to 6.0.1.
Release notes
Sourced from gulp-sass's releases.
v6.0.1
Fixes
- Fix regressions in source maps (
@wkillerud, #875)v6.0.0
First and foremost a huge shout out to
@wkillerudfor making this long awaited release possible <3Breaking changes
- Migrate to use the new Sass JS API by default (
@wkillerud, #846)Documentation
- Update the watch
taskdocumentation (@g1eny0ung, #847) & (@xzyfer)Upgrading to v6
gulp-sassversion 6 uses the new compile function internally by default. If you use any options, for instance custom importers, please compare the new options with the legacy options in order to migrate. For instance, theoutputStyleoption is now calledstyle.function buildStyles() { return gulp.src('./sass/**/*.scss') - .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) + .pipe(sass({style: 'compressed'}).on('error', sass.logError)) .pipe(gulp.dest('./css')); };If you want to keep using the legacy API while it's available, you can.
const sass = require('gulp-sass/legacy')(require('sass'));or to continue using node-sass
npm install gulp-sass node-sassconst sass = require('gulp-sass/legacy')(require('node-sass'));If you use source maps, you may see the result change somewhat. The result will typically be absolute
file:URLs, rather than relative ones. The result may also be the source itself, URL encoded. You can optionally add custom importers to adjust the source maps according to your own needs.New Contributors
@wkillerudmade their first contribution in dlmanning/gulp-sass#846@g1eny0ungmade their first contribution in dlmanning/gulp-sass#847Full Changelog: https://github.com/dlmanning/gulp-sass/compare/v5.1.0...v6.0.0
Changelog
Sourced from gulp-sass's changelog.
v6.0.1
March 5, 2025
https://github.com/dlmanning/gulp-sass/releases/tag/v6.0.1
v6.0.0
November 27, 2024
https://github.com/dlmanning/gulp-sass/releases/tag/v6.0.0
v5.0.0
June 25, 2021
https://github.com/dlmanning/gulp-sass/releases/tag/v5.0.0
v4.1.1
June 24, 2021
https://github.com/dlmanning/gulp-sass/releases/tag/v4.1.1
v4.1.0
April 23, 2020
https://github.com/dlmanning/gulp-sass/releases/tag/v4.1.0
v4.0.2
October 16, 2018
https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.2
v4.0.1
Apr 8, 2018
https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.1
v4.0.0
April 5, 2018
https://github.com/dlmanning/gulp-sass/releases/tag/v4.0.0
v3.2.1
... (truncated)
Commits
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)