1.2.2 • Published 3 years ago

@uppercod/esbuild-meta-url v1.2.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@uppercod/esbuild-meta-url

Separate the Files control from esbuild, to hold them as files referenced by a URL.

Example

Config

import esbuild from "esbuild";
import pluginMetaUrl from "@uppercod/esbuild-meta-url";

await esbuild.build({
    entryPoints: ["./src/index.js"],
    outdir: "dist",
    format: "esm",
    bundle: true,
    splitting: true,
    loader: {},
    plugins: [pluginFileUrl({ css: true })],
});

index.js

import styleUrl from "./style.css";

console.log(styleUrl.href);

the css files will be copied to the destination and the import will refer to the destination as an example url relative to the module.

install

npm install@uppercod/esbuild-meta-url

Options

pluginFileUrl({
    css: true,
    /**
     * you can alternatively associate a callback to
     * modify the script manually, escaping from esbuild
     * @param {Object} File
     * @param {string} File.id - base of the file in destination
     * @param {string} File.src - source of file on disk
     * @param {string} File.type - file type
     * @param {string} File.dest - file write destination
     * @returns {string}
     */
    md: ({ id, type, src, dest }) => {
        // The id will be the reference to use for the URL,
        // it is mandatory to return this
        return id;
    },
});

This plugin does not break with other plugins, it generates sub-instances of esbuild to process the files if any plugin requires it. these sub-instances will inherit the settings

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.0.0

3 years ago