chore(deps): update devdependencies #1120
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.14.47
->~0.14.48
~4.1.0
->~4.2.1
Release Notes
evanw/esbuild
v0.14.48
Compare Source
Enable using esbuild in Deno via WebAssembly (#2323)
The native implementation of esbuild is much faster than the WebAssembly version, but some people don't want to give Deno the
--allow-run
permission necessary to run esbuild and are ok waiting longer for their builds to finish when using the WebAssembly backend. With this release, you can now use esbuild via WebAssembly in Deno. To do this you will need to import fromwasm.js
instead ofmod.js
:Make sure you run Deno with
--allow-net
so esbuild can download the WebAssembly module. Using esbuild like this starts up a worker thread that runs esbuild in parallel (unless you callesbuild.initialize({ worker: false })
to tell esbuild to run on the main thread). If you want to, you can callesbuild.stop()
to terminate the worker if you won't be using esbuild anymore and you want to reclaim the memory.Note that Deno appears to have a bug where background WebAssembly optimization can prevent the process from exiting for many seconds. If you are trying to use Deno and WebAssembly to run esbuild quickly, you may need to manually call
Deno.exit(0)
after your code has finished running.Add support for font file MIME types (#2337)
This release adds support for font file MIME types to esbuild, which means they are now recognized by the built-in local web server and they are now used when a font file is loaded using the
dataurl
loader. The full set of newly-added file extension MIME type mappings is as follows:.eot
=>application/vnd.ms-fontobject
.otf
=>font/otf
.sfnt
=>font/sfnt
.ttf
=>font/ttf
.woff
=>font/woff
.woff2
=>font/woff2
Remove
"use strict";
when targeting ESM (#2347)All ES module code is automatically in strict mode, so a
"use strict";
directive is unnecessary. With this release, esbuild will now remove the"use strict";
directive if the output format is ESM. This change makes the generated output file a few bytes smaller:Attempt to have esbuild work with Deno on FreeBSD (#2356)
Deno doesn't support FreeBSD, but it's possible to build Deno for FreeBSD with some additional patches on top. This release of esbuild changes esbuild's Deno installer to download esbuild's FreeBSD binary in this situation. This configuration is unsupported although in theory everything should work.
Add some more target JavaScript engines (#2357)
This release adds the Rhino and Hermes JavaScript engines to the set of engine identifiers that can be passed to the
--target
flag. You can use this to restrict esbuild to only using JavaScript features that are supported on those engines in the output files that esbuild generates.prettier/eslint-plugin-prettier
v4.2.1
Compare Source
Patch Changes
5736ed5
Thanks @JounQin! - chore: reuse prettierRcOptions instead of resolveConfig againv4.2.0
Compare Source
Minor Changes
#483
7bd70b6
Thanks @JounQin! - feat: support svelte out of boxclose #472, close #482
We recommend to use
eslint-plugin-svelte
instead ofeslint-plugin-svelte3
.Configuration
📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - 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 Mend Renovate. View repository job log here.