esbuild-plugin-solid icon indicating copy to clipboard operation
esbuild-plugin-solid copied to clipboard

The `esbuild-plugin-solid` is a plugin for ESBuild that provides integration with SolidJS. It allows you to use ESBuild to bundle Solid applications, handling the specific requirements of Solid during...

Results 7 esbuild-plugin-solid issues
Sort by recently updated
recently updated
newest added

This updates all dependencies. Notably, esbuild has been upgraded to 0.19.10, and typescript has been updated to 5.3.3. I replaced `@skypack/package-check` with `publint` for checking package validity, and fixed the...

as seen here: https://github.com/solidjs/solid/blob/main/packages/solid/package.json#L46 esbuild does support conditional exports, but won't set 'development' or 'production' by default: https://esbuild.github.io/api/#conditions the fix is easy enough: ```js assert(process.env.NODE_ENV === 'production' || process.env.NODE_ENV ===...

Check out this compiled component: ```tsx createComponent(StatusBar, { name: "HealthStatusBarSegment3", get anchor() { return [{ point: 3 /* Topleft */, relativePoint: 9 /* Topright */, relativeTo: "../HealthStatusBarSegment2", offsetX: 10 }];...

hey im using gulp with esbuild and your solidplugin. i also want to use the https://github.com/zziger/esbuild-ifdef plugin however, it doesn't seem to work. here's the code: ` const ifdefPlugin =...

Adds `"types"` filed to `"exports"` in `package.json` Otherwise this is happening: ![image](https://github.com/amoutonbrady/esbuild-plugin-solid/assets/24491503/49a78ac0-511c-42c3-8eb1-b841dc1134c4)

This lets users customize target files to transform. The most common use case would be applying the transform only for specific files in projects that contain JSX/TSX files targeting multiple...

Hi, I have some issue with integration SolidJS to my Ruby on Rails application node version is 18.20.4 I have simple package.json ``` { "name": "pullkeeper", "private": "false", "type": "module",...