@finos/perspective-esbuild-plugin

2.10.0 • Public • Published

@finos/perspective-esbuild-plugin

Applications bundled with esbuild can make use of the @finos/perspective-esbuild-plugin module. A full example can be found in the repo under examples/esbuild-example.

const esbuild = require("esbuild");
const {PerspectiveEsbuildPlugin} = require("@finos/perspective-esbuild-plugin");

esbuild.build({
    entryPoints: ["src/index.js"],
    plugins: [PerspectiveEsbuildPlugin()],
    format: "esm",
    bundle: true,
    loader: {
        ".ttf": "file",
    },
});

When bundling via esbuild, you must also:

  • Use the type="module" attribute in your app's <script> tag, as this build mode is only supported via ES modules.
  • Use the direct imports for the esm versions Perspective, specifically @finos/perspective/dist/esm/perspective.js and @finos/perspective-viewer/dist/esm/perspective-viewer.js

Readme

Keywords

none

Package Sidebar

Install

npm i @finos/perspective-esbuild-plugin

Weekly Downloads

142

Version

2.10.0

License

Apache-2.0

Unpacked Size

32.5 kB

Total Files

10

Last publish

Collaborators

  • finos-admin
  • maoo
  • texodus
  • neil.slinger