GitHub - hyrious/esbuild-plugin-style: The style-loader for esbuild. (original) (raw)

@hyrious/esbuild-plugin-style

The missing style-loader for esbuild.

Usage

const { style } = require("@hyrious/esbuild-plugin-style");

require("esbuild").build({ entryPoints: ["app.js"], bundle: true, outfile: "out.js", plugins: [style()], }).catch(() => process.exit(1));

Given such app.js and style.css:

import "./style.css"; console.log(1);

Outputs (things like):

let style = document.createElement("style"); style.append("body { color: red }"); document.head.append(style); console.log(1);

Options

export function style({ minify = true, charset = "utf8" }): Plugin;

License

MIT @ hyrious