fix(deps): update all non-major dependencies #21
                
     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:
^7.22.8->^7.22.9^3.1.2->^3.2.1^20.4.1->^20.4.2^0.18.11->^0.18.13^8.44.0->^8.45.0^1.3.2->^1.4.0^4.4.2->^4.4.4Release Notes
babel/babel (@babel/core)
v7.22.9Compare Source
🐛 Bug Fix
babel-plugin-transform-typescriptInfinityin enums (@liuxingbaoyu)💅 Polish
babel-generatorrecordAndTupleSyntaxTypedefaults to"hash"(@coderaiser)🏠 Internal
eslint.config.js(@JLHwung)sxzz/eslint-config (@sxzz/eslint-config)
v3.2.1Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v3.2.0Compare Source
🚀 Features
View changes on GitHub
evanw/esbuild (esbuild)
v0.18.13Compare Source
Add the
--drop-labels=option (#2398)If you want to conditionally disable some development-only code and have it not be present in the final production bundle, right now the most straightforward way of doing this is to use the
--define:flag along with a specially-named global variable. For example, consider the following code:You can build this for development and production like this:
esbuild --define:DEV=trueesbuild --define:DEV=falseOne drawback of this approach is that the resulting code crashes if you don't provide a value for
DEVwith--define:. In practice this isn't that big of a problem, and there are also various ways to work around this.However, another approach that avoids this drawback is to use JavaScript label statements instead. That's what the
--drop-labels=flag implements. For example, consider the following code:With this release, you can now build this for development and production like this:
esbuildesbuild --drop-labels=DEVThis means that code containing optional development-only checks can now be written such that it's safe to run without any additional configuration. The
--drop-labels=flag takes comma-separated list of multiple label names to drop.Avoid causing
unhandledRejectionduring shutdown (#3219)All pending esbuild JavaScript API calls are supposed to fail if esbuild's underlying child process is unexpectedly terminated. This can happen if
SIGINTis sent to the parentnodeprocess with Ctrl+C, for example. Previously doing this could also cause an unhandled promise rejection when esbuild attempted to communicate this failure to its own child process that no longer exists. This release now swallows this communication failure, which should prevent this internal unhandled promise rejection. This change means that you can now use esbuild's JavaScript API with a customSIGINThandler that extends the lifetime of thenodeprocess without esbuild's internals causing an early exit due to an unhandled promise rejection.Update browser compatibility table scripts
The scripts that esbuild uses to compile its internal browser compatibility table have been overhauled. Briefly:
caniuse-liteand@mdn/browser-compat-dataas new data sources (replacing manually-copied information)This change means it's now much easier to keep esbuild's internal compatibility tables up to date. You can review the table changes here if you need to debug something about this change:
v0.18.12Compare Source
Fix a panic with
const enuminside parentheses (#3205)This release fixes an edge case where esbuild could potentially panic if a TypeScript
const enumstatement was used inside of a parenthesized expression and was followed by certain other scope-related statements. Here's a minimal example that triggers this edge case:Allow a newline in the middle of TypeScript
export typestatement (#3225)Previously esbuild incorrectly rejected the following valid TypeScript code:
Code that uses a newline after
export typeis now allowed starting with this release.Fix cross-module inlining of string enums (#3210)
A refactoring typo in version 0.18.9 accidentally introduced a regression with cross-module inlining of string enums when combined with computed property accesses. This regression has been fixed.
Rewrite
.jsto.tsinside packages withexports(#3201)Packages with the
exportsfield are supposed to disable node's path resolution behavior that allows you to import a file with a different extension than the one in the source code (for example, importingfoo/barto getfoo/bar.js). And TypeScript has behavior where you can import a non-existent.jsfile and you will get the.tsfile instead. Previously the presence of theexportsfield caused esbuild to disable all extension manipulation stuff which included both node's implicit file extension searching and TypeScript's file extension swapping. However, TypeScript appears to always apply file extension swapping even in this case. So with this release, esbuild will now rewrite.jsto.tseven inside packages withexports.Fix a redirect edge case in esbuild's development server (#3208)
The development server canonicalizes directory URLs by adding a trailing slash. For example, visiting
/aboutredirects to/about/if/about/index.htmlwould be served. However, if the requested path begins with two slashes, then the redirect incorrectly turned into a protocol-relative URL. For example, visiting//aboutredirected to//about/which the browser turns intohttp://about/. This release fixes the bug by canonicalizing the URL path when doing this redirect.eslint/eslint (eslint)
v8.45.0Compare Source
Features
cdd063cfeat: Expose LegacyESLint in unsupported API (#17341) (Nicholas C. Zakas)d34abe5feat: fix indent rule for else-if (#17318) (Milos Djermanovic)Bug Fixes
b79b6fbfix: Fix suggestion message inno-useless-escape(#17339) (Francesco Trotta)c667055fix: provide uniquefixandfix.rangeobjects in lint messages (#17332) (Milos Djermanovic)Documentation
89f3225docs: add playground links to correct and incorrect code blocks (#17306) (Josh Goldberg ✨)f8892b5docs: Expand rule option schema docs (#17198) (Matt Wilkinson)8bcbf11docs: Config Migration Guide (#17230) (Ben Perlmutter)bb30908docs: Update README (GitHub Actions Bot)84d243bdocs: Update README (GitHub Actions Bot)b762632docs: Update README (GitHub Actions Bot)138c096docs: add more prefer-destructuring examples with array destructuring (#17330) (Milos Djermanovic)1fc50a8docs:max-lenrulecodeandtabWidthas positional arguments (#17331) (Jesús Leganés-Combarro)Chores
68f63d7chore: package.json update for @eslint/js release (ESLint Jenkins)5ca9b4dchore: update eslint-config-eslint exports (#17336) (Milos Djermanovic)7bf2e86chore: remove unused dependencies (#17352) (Percy Ma)c6f8cd0chore: RemovedefaultIgnoresfrom FlatESLint private members (#17349) (Francesco Trotta)0052374chore: move jsdoc settings to eslint-config-eslint (#17338) (唯然)unjs/unplugin (unplugin)
v1.4.0Compare Source
Bug Fixes
Features
enforce(856b073)1.3.1 (2023-03-14)
Reverts
vitejs/vite (vite)
v4.4.4Compare Source
vite-error-overlaywith Escape key (#13795) (85bdcda), closes #13795v4.4.3Compare Source
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (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.