Allow using the node: import prefix with es* targets (#3821)
The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:
// Original code
import fs from 'node:fs'
fs.open
// Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
import fs from "fs";
fs.open;
// New output (with --bundle --format=esm --platform=node --target=node18,es2022)
import fs from "node:fs";
fs.open;
Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)
Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.
Fix incorrect location of certain error messages (#3845)
This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.
Print comments before case clauses in switch statements (#3838)
With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).
With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.
Allow using the node: import prefix with es* targets (#3821)
The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:
// Original code
import fs from 'node:fs'
fs.open
// Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
import fs from "fs";
fs.open;
// New output (with --bundle --format=esm --platform=node --target=node18,es2022)
import fs from "node:fs";
fs.open;
Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)
Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.
Fix incorrect location of certain error messages (#3845)
This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.
Print comments before case clauses in switch statements (#3838)
With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).
With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.
#1463b69ce2d Thanks @iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.
#1463b69ce2d Thanks @iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.
Bumps the dev-dependencies group with 14 updates:
19.4.0
19.4.1
19.2.2
19.4.1
19.4.0
19.4.1
9.8.0
9.9.1
3.4.1
4.0.0
22.1.0
22.5.1
0.23.0
0.23.1
9.8.0
9.9.1
9.1.4
9.1.5
15.2.8
15.2.9
16.8.1
16.9.0
6.5.0
6.5.1
8.0.1
8.3.0
18.3.3
18.3.5
Updates
@commitlint/cli
from 19.4.0 to 19.4.1Release notes
Sourced from
@commitlint/cli
's releases.Changelog
Sourced from
@commitlint/cli
's changelog.Commits
249e6a2
v19.4.1Updates
@commitlint/config-conventional
from 19.2.2 to 19.4.1Release notes
Sourced from
@commitlint/config-conventional
's releases.... (truncated)
Changelog
Sourced from
@commitlint/config-conventional
's changelog.Commits
249e6a2
v19.4.1Updates
@commitlint/core
from 19.4.0 to 19.4.1Release notes
Sourced from
@commitlint/core
's releases.Changelog
Sourced from
@commitlint/core
's changelog.Commits
249e6a2
v19.4.1Updates
@eslint/js
from 9.8.0 to 9.9.1Release notes
Sourced from
@eslint/js
's releases.Changelog
Sourced from
@eslint/js
's changelog.Commits
cd5a0da
chore: package.json update for@eslint/js
release59dba1b
chore: package.json update for@eslint/js
releaseUpdates
@progress/kendo-e2e
from 3.4.1 to 4.0.0Commits
Updates
@types/node
from 22.1.0 to 22.5.1Commits
Updates
esbuild
from 0.23.0 to 0.23.1Release notes
Sourced from esbuild's releases.
Changelog
Sourced from esbuild's changelog.
Commits
3327274
publish 0.23.1 to npm38e22ed
add a warning/debug log message for #3867a15bb51
fix #3825: memory leak ofpluginData
valuesf6e6481
fix #3838: print comments beforecase
clauses9c13ae1
fix #3853: update go 1.22.4 => 1.22.578f89e4
fix #3845: some incorrect error message locations892d2a7
fix #3834: cli sometimes panics with--analyze
360d472
fix a typo in the release notese3f4e2d
fix #3821: allownode:
prefix withes*
targetsUpdates
eslint
from 9.8.0 to 9.9.1Release notes
Sourced from eslint's releases.
Changelog
Sourced from eslint's changelog.
Commits
8781e6f
9.9.11503d03
Build: changelog update for 9.9.1b0c34d0
chore: upgrade to@eslint/js
@9
.9.1 (#18809)cd5a0da
chore: package.json update for@eslint/js
release4840930
docs: Update README with version support and clean up content (#18804)f61f40d
docs: Update globals examples (#18805)e112642
refactor: Extract parsing logic from Linter (#18790)241fcea
docs: Use and define languages (#18795)0f68a85
chore: use eslint-plugin-yml on yaml files only (#18801)5dbdd63
docs: eslint-plugin-markdown ->@eslint/markdown
(#18797)Updates
husky
from 9.1.4 to 9.1.5Release notes
Sourced from husky's releases.
Commits
2fee8d2
9.1.5397e7f0
fixes #1494 support pre-merge-commit hookUpdates
lint-staged
from 15.2.8 to 15.2.9Release notes
Sourced from lint-staged's releases.
Changelog
Sourced from lint-staged's changelog.
Commits
0ce5e14
chore(changeset): release (#1465)b69ce2d
fix: set max event listeners to the number of tasks (#1463)Updates
stylelint
from 16.8.1 to 16.9.0Release notes
Sourced from stylelint's releases.