pika-plugin-build-legacy-browser
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

pika-plugin-build-legacy-browser

A @pika/pack build plugin. Adds an UMD bundle to your package for supporting legacy browsers. Built & optimized to run in all browsers. Useful for hosting on a CDN like UNPKG and/or when package dependencies aren't written to run natively on the web.

Install

# npm:
npm install pika-plugin-build-legacy-browser --save-dev
# yarn:
yarn add pika-plugin-build-legacy-browser --dev

Usage

{
  "name": "example-package-json",
  "version": "1.0.0",
  "@pika/pack": {
    "pipeline": [
      ["@pika/plugin-standard-pkg"],
      [
        "pika-plugin-build-legacy-browser",
        {
          "name": "MyBundle" // required
          // other options (optional)
        }
      ]
    ]
  }
}

Options

  • "name" (Required) Global name for output UMD module.
  • "sourcemap" (Default: "true"): Adds a source map for this build.
  • "namedExports" (Default: undefined): Ecplicitly specify unresolvable named exports (See rollup-plugin-commonjs for more information).
  • "minify" (Default: true): Specify if bundle should be minifed using terser or not. Can also be terser options object to further tweak minification.
  • "entrypoint" (Default: "umd:main"): Customize the package.json manifest entrypoint set by this plugin. Accepts either a string, an array of strings, or null to disable entrypoint.
    • {"entrypoint": ["unpkg", "jsdelivr"]} will create both "unpkg" & "jsdelivr" "dist-umd/index.min.js" entrypoints.

Result

  1. Adds a web bundled distribution to your built package: dist-umd/index.min.js
  2. Transpiled to run on all browsers
  3. All dependencies inlined into this file.
  4. Minified using terser (Can optionally be skipped)
  5. (if specified) Adds the file to your specified "entrypoint".

Readme

Keywords

none

Package Sidebar

Install

npm i pika-plugin-build-legacy-browser

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

19.5 kB

Total Files

6

Last publish

Collaborators

  • diyorbek