0.9.2 • Published 4 years ago

@pika/plugin-bundle-node v0.9.2

Weekly downloads
66
License
MIT
Repository
github
Last release
4 years ago

@pika/plugin-bundle-node

A @pika/pack build plugin. Adds a bundled Node.js distribution to your package, built & optimized to run on Node.js with all dependencies included. Useful for reducing the install time for CLIs.

Install

# npm:
npm install @pika/plugin-bundle-node --save-dev
# yarn:
yarn add @pika/plugin-bundle-node --dev

Usage

{
  "name": "example-package-json",
  "version": "1.0.0",
  "@pika/pack": {
    "pipeline": [
      ["@pika/plugin-standard-pkg"],
      ["@pika/plugin-build-node"],
      ["@pika/plugin-bundle-node"]
    ]
  }
}

For more information about @pika/pack & help getting started, check out the main project repo.

Options

  • "sourcemap" (Default: "true"): Adds a source map for this build.
  • "minNodeVersion" (Default: "8"): This plugin will bundle your package for the current minimum Node.js LTS major version. This option allows you to target later versions of Node.js only.

Result

  1. Adds a bundled Node.js distribution to your built package: dist-node/index.bundled.js
  2. Common.js (CJS) Module Syntax.
  3. All dependencies included in this file.

Note that this does not add or modify the "main" entrypoint to your package.json. See @pika/plugin-simple-bin for an example of how to automatically point to this bundled build.

0.9.2

4 years ago

0.9.1

4 years ago

0.9.0

4 years ago

0.8.3

4 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.16

5 years ago

0.3.15

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago