This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
chore(deps): update all non-major dependencies #1384
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.13.8
->^0.13.9
0.6.11
->0.6.12
Release Notes
evanw/esbuild
v0.13.9
Compare Source
Add support for
imports
inpackage.json
(#1691)This release adds basic support for the
imports
field inpackage.json
. It behaves similarly to theexports
field but only applies to import paths that start with#
. Theimports
field provides a way for a package to remap its own internal imports for itself, while theexports
field provides a way for a package to remap its external exports for other packages. This is useful because theimports
field respects the currently-configured conditions which means that the import mapping can change at run-time. For example:Now that esbuild supports this feature too, import paths starting with
#
and any provided conditions will be respected when bundling:Fix using
npm rebuild
with theesbuild
package (#1703)Version 0.13.4 accidentally introduced a regression in the install script where running
npm rebuild
multiple times could fail after the second time. The install script creates a copy of the binary executable usinglink
followed byrename
. Usinglink
creates a hard link which saves space on the file system, andrename
is used for safety since it atomically replaces the destination.However, the
rename
syscall has an edge case where it silently fails if the source and destination are both the same link. This meant that the install script would fail after being run twice in a row. With this release, the install script now deletes the source after callingrename
in case it has silently failed, so this issue should now be fixed. It should now be safe to usenpm rebuild
with theesbuild
package.Fix invalid CSS minification of
border-radius
(#1702)CSS minification does collapsing of
border-radius
related properties. For example:However, this only works for numeric tokens, not identifiers. For example:
Transforming this to
div{border-radius:inherit 1px 1px}
, as was done in previous releases of esbuild, is an invalid transformation and results in incorrect CSS. This release of esbuild fixes this CSS transformation bug.antfu/unplugin-vue2-script-setup
v0.6.12
Compare Source
Bug Fixes
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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 WhiteSource Renovate. View repository job log here.