Socket
Socket
Sign inDemoInstall

esbuild

Package Overview
Dependencies
0
Maintainers
1
Versions
446
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.6 to 0.3.7

2

install.js

@@ -73,2 +73,4 @@ const fs = require('fs');

installOnUnix('esbuild-linux-64');
} else if (process.platform === 'linux' && os.arch() === 'arm64') {
installOnUnix('esbuild-linux-arm64');
} else if (process.platform === 'darwin' && os.arch() === 'x64') {

@@ -75,0 +77,0 @@ installOnUnix('esbuild-darwin-64');

@@ -18,2 +18,9 @@ const child_process = require('child_process');

if (process.platform === 'linux' && os.arch() === 'arm64') {
return child_process.spawn(path.join(__dirname, '..', 'bin', 'esbuild'), flags, {
cwd: process.cwd(),
stdio,
});
}
if (process.platform === 'win32' && os.arch() === 'x64') {

@@ -20,0 +27,0 @@ if (WASM) {

2

package.json
{
"name": "esbuild",
"version": "0.3.6",
"version": "0.3.7",
"description": "An extremely fast JavaScript bundler and minifier.",

@@ -5,0 +5,0 @@ "repository": "https://github.com/evanw/esbuild",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc