
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@esbuild/openbsd-arm64
Advanced tools
The OpenBSD ARM 64-bit binary for esbuild, a JavaScript bundler.
This is the OpenBSD ARM 64-bit binary for esbuild, a JavaScript bundler and minifier. See https://github.com/evanw/esbuild for details.
0.25.5
Fix a regression with browser
in package.json
(#4187)
The fix to #4144 in version 0.25.3 introduced a regression that caused browser
overrides specified in package.json
to fail to override relative path names that end in a trailing slash. That behavior change affected the axios@0.30.0
package. This regression has been fixed, and now has test coverage.
Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a ?
modifier. These labels included function
, import
, infer
, new
, readonly
, and typeof
. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:
type Foo = [
value: any,
readonly?: boolean, // This is now parsed correctly
]
Add CSS prefixes for the stretch
sizing value (#4184)
This release adds support for prefixing CSS declarations such as div { width: stretch }
. That CSS is now transformed into this depending on what the --target=
setting includes:
div {
width: -webkit-fill-available;
width: -moz-available;
width: stretch;
}
FAQs
The OpenBSD ARM 64-bit binary for esbuild, a JavaScript bundler.
The npm package @esbuild/openbsd-arm64 receives a total of 2,924,282 weekly downloads. As such, @esbuild/openbsd-arm64 popularity was classified as popular.
We found that @esbuild/openbsd-arm64 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.