-
Notifications
You must be signed in to change notification settings - Fork 6
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
chore(deps): update all non-major dependencies #421
Conversation
Check PR 421 preview 👀 |
5cc7fc8
to
51138a0
Compare
Check PR 421 preview 👀 |
51138a0
to
90abe4e
Compare
Check PR 421 preview 👀 |
90abe4e
to
b23d593
Compare
Check PR 421 preview 👀 |
b23d593
to
bccacb0
Compare
Check PR 421 preview 👀 |
bccacb0
to
3f09e91
Compare
Check PR 421 preview 👀 |
3f09e91
to
43b0362
Compare
Check PR 421 preview 👀 |
43b0362
to
974203d
Compare
Check PR 421 preview 👀 |
974203d
to
99149cb
Compare
Check PR 421 preview 👀 |
99149cb
to
9e619d1
Compare
Check PR 421 preview 👀 |
9e619d1
to
593376b
Compare
Check PR 421 preview 👀 |
593376b
to
1f2bf92
Compare
Check PR 421 preview 👀 |
1f2bf92
to
fb5edc2
Compare
Check PR 421 preview 👀 |
fb5edc2
to
377f06d
Compare
Check PR 421 preview 👀 |
Check PR 421 preview 👀 |
c886d28
to
2b39931
Compare
Check PR 421 preview 👀 |
2b39931
to
5eed9da
Compare
Check PR 421 preview 👀 |
5eed9da
to
1709c98
Compare
Check PR 421 preview 👀 |
1709c98
to
6bcd5c8
Compare
Check PR 421 preview 👀 |
6bcd5c8
to
b6c6781
Compare
Check PR 421 preview 👀 |
b6c6781
to
f371204
Compare
Check PR 421 preview 👀 |
f371204
to
900ce00
Compare
Check PR 421 preview 👀 |
900ce00
to
70ec615
Compare
Check PR 421 preview 👀 |
70ec615
to
0f0e1aa
Compare
Check PR 421 preview 👀 |
0f0e1aa
to
26e6d13
Compare
Check PR 421 preview 👀 |
26e6d13
to
9134955
Compare
Check PR 421 preview 👀 |
9134955
to
4144e5d
Compare
Check PR 421 preview 👀 |
This PR contains the following updates:
~6.0.0
->~6.1.0
~8.56.0
->~8.57.0
1.6.1
->1.7.0
~5.11.0
->~5.12.0
~1.69.0
->~1.71.0
Release Notes
cssnano/cssnano (cssnano)
v6.1.0
: v6.1.0Compare Source
This release contains a lot of fixes to Browserslist support thanks to @colinrotherham
Features
Additionally, this release includes improved TypeScript types.
eslint/eslint (eslint)
v8.57.0
Compare Source
Features
1120b9b
feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)dca7d0f
feat: Enableeslint.config.mjs
andeslint.config.cjs
(#18066) (Nitin Kumar)Bug Fixes
2196d97
fix: handle absolute file paths inFlatRuleTester
(#18064) (Nitin Kumar)69dd1d1
fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)9852a31
fix: deep merge behavior in flat config (#18065) (Nitin Kumar)4c7e9b0
fix: allow circular references in config (#18056) (Milos Djermanovic)Documentation
84922d0
docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)5b8c363
docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)77dbfd9
docs: show NEXT in version selectors (#18052) (Milos Djermanovic)Chores
1813aec
chore: upgrade @eslint/js@8.57.0 (#18143) (Milos Djermanovic)5c356bb
chore: package.json update for @eslint/js release (Jenkins)f4a1fe2
test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)42c0aef
ci: Enable CI forv8.x
branch (#18047) (Milos Djermanovic)bengsfort/rollup-plugin-generate-html-template (rollup-plugin-generate-html-template)
v1.7.0
Compare Source
f06f85f
, thanks @snellcode, @longrunningprocess)btd/rollup-plugin-visualizer (rollup-plugin-visualizer)
v5.12.0
Compare Source
sass/dart-sass (sass)
v1.71.1
Compare Source
Command-Line Interface
JavaScript API
Export the
NodePackageImporter
class in ESM mode.Allow
NodePackageImporter
to locate a default directory even when theentrypoint is an ESM module.
Dart API
NodePackageImporter()
a static error ratherthan just a runtime error.
Embedded Sass
when running on musl Linux.
v1.71.0
Compare Source
For more information about
pkg:
importers, see theannouncement on the Sass blog.
Command-Line Interface
--pkg-importer
flag to enable built-inpkg:
importers. Currentlythis only supports the Node.js package resolution algorithm, via
--pkg-importer=node
. For example,@use "pkg:bootstrap"
will loadnode_modules/bootstrap/scss/bootstrap.scss
.JavaScript API
NodePackageImporter
importer that can be passed to theimporters
option. This loads files using the
pkg:
URL scheme according to the Node.jspackage resolution algorithm. For example,
@use "pkg:bootstrap"
will loadnode_modules/bootstrap/scss/bootstrap.scss
. The constructor takes a singleoptional argument, which indicates the base directory to use when locating
node_modules
directories. It defaults topath.dirname(require.main.filename)
.Dart API
NodePackageImporter
importer that can be passed to theimporters
option. This loads files using the
pkg:
URL scheme according to the Node.jspackage resolution algorithm. For example,
@use "pkg:bootstrap"
will loadnode_modules/bootstrap/scss/bootstrap.scss
. The constructor takes a singleargument, which indicates the base directory to use when locating
node_modules
directories.v1.70.0
Compare Source
JavaScript API
Add a
sass.initCompiler()
function that returns asass.Compiler
objectwhich supports
compile()
andcompileString()
methods with the same API asthe global Sass object. On the Node.js embedded host, each
sass.Compiler
object uses a single long-lived subprocess, making compiling multiple
stylesheets much more efficient.
Add a
sass.initAsyncCompiler()
function that returns asass.AsyncCompiler
object which supports
compileAsync()
andcompileStringAsync()
methods withthe same API as the global Sass object. On the Node.js embedded host, each
sass.AsynCompiler
object uses a single long-lived subprocess, makingcompiling multiple stylesheets much more efficient.
Embedded Sass
Support the
CompileRequest.silent
field. This allows compilations with nologging to avoid unnecessary request/response cycles.
The Dart Sass embedded compiler now reports its name as "dart-sass" rather
than "Dart Sass", to match the JS API's
info
field.Configuration
📅 Schedule: Branch creation - "after 5pm on tuesday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.