esbuild-config (Linux x64)

raw JSON →
1.0.1 verified Fri May 01 auth: no javascript

The platform-specific Linux 64-bit binary package for esbuild-config (v1.0.1), a CLI tool that generates esbuild configuration files. This is an optional dependency automatically installed by esbuild-config on Linux x64 systems. The package is rarely installed directly; instead, esbuild-config (the parent) should be used. Release cadence is low, with only a few versions since 2020. Key differentiator: provides config file support for esbuild, which natively uses CLI arguments only.

error Module not found: Error: Can't resolve 'esbuild-config-linux-64'
cause Attempting to import or require this binary package directly in JavaScript code.
fix
Do not import this package. Install and use 'esbuild-config' instead. This binary is automatically used by the parent package.
error Error: Cannot find module 'esbuild-config-linux-64'
cause Installing esbuild-config-linux-64 directly without proper context, or mixing platforms.
fix
Remove esbuild-config-linux-64 and install 'esbuild-config' instead. Ensure your package.json lists only esbuild-config as a dependency.
gotcha Do not install this package directly. Install esbuild-config instead, which will automatically select the correct binary for your platform.
fix Run 'npm install esbuild-config' and remove any direct dependency on esbuild-config-linux-64.
breaking Version 1.0.0+ dropped support for non-Linux x64 architectures on this package. Use other platform-specific packages (e.g., esbuild-config-darwin-64, esbuild-config-win32-64) for other OS.
fix If on macOS, install esbuild-config-darwin-64; if on Windows, install esbuild-config-win32-64. Or simply install esbuild-config.
npm install esbuild-config-linux-64
yarn add esbuild-config-linux-64
pnpm add esbuild-config-linux-64

Shows how to properly use this binary package via the parent esbuild-config package.

// This package is a platform-specific binary for esbuild-config.
// Do NOT install or import directly. Instead, install the parent package:
// npm install esbuild-config
// Then run:
// npx esbuild-config init
// See https://github.com/bpierre/esbuild-config for full usage.