🚧 This repo has been moved to prescientmoon/esbuild-plugin-purescript 🚧
esbuild integration for PureScript
- Allows you to import
.purs
files directly from your JavaScript
- Run
spago build
or similar commands for you. This plugin will only point esbuild to your existingoutput
directory - Tree shake using zephyr for you. If you want to use zephyr, check out this example
First, install the library from npm:
npm install esbuild-plugin-purescript
Example build.js
:
const esbuild = require("esbuild");
const PureScriptPlugin = require("esbuild-plugin-purescript");
const path = require("path");
esbuild
.build({
entryPoints: ["src/index.js"],
bundle: true,
outdir: "dist",
plugins: [
PureScriptPlugin({
output: path.resolve(
__dirname,
"myOutput"
) /* set to 'output' by default */,
sources: [
"some/**/glob/*.purs",
] /* set to `spago sources` by default */,
}),
],
})
.catch((_e) => process.exit(1));
Example src/index.js
:
import { main } from "./Main.purs";
console.log("Loaded PureScript code 🚀");
main();