0.9.2 • Published 4 years ago

@pika/plugin-build-types v0.9.2

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

@pika/plugin-build-types

A @pika/pack build plugin. Automatically adds TypeScript type definitions to your package build.

Note: This plugin is not needed if you are already writing TypeScript and using the ts-standard-pkg plugin.

Install

# npm:
npm install @pika/plugin-build-types --save-dev
# yarn:
yarn add @pika/plugin-build-types --dev

Usage

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

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

Options

  • "tsconfig": The relative path to the tsconfig.json config file to use. Defaults to the top-level project TypeScript config file, if one exists.
  • "args": Optional, an array of additional arguments for tsc. Example: ["--build"]
  • "entrypoint" (Default: "types"): Customize the package.json manifest entrypoint set by this plugin. Accepts either a string, an array of strings, or null to disable entrypoint. Changing this is not recommended for most usage.

Result

  1. Adds or generates TypeScript definitions for your package build: dist-types/
  • If your package is written in TypeScript: Types are automatically generated from your source.
  • If your package already includes custom-written type definitions: These files are automatically copied into your package build.
  • Otherwise: Automatically generate definitions from your JavaScript source. (Note that this currently requires that you include @pika/plugin-build-node or some other Node.js build earlier in the pipeline.)
  1. Adds a "types" entrypoint to your built package.json manifest.
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