clean-typescript-build
TypeScript icon, indicating that this package has built-in type declarations

0.1.5 • Public • Published

clean-typescript-build

Simple TypeScript build cleaning tool

Feature

  • Delete TypeScript compilation products if correspding TS source file is detected.

Requirements

  • Node.js ≥ 8.9.0

APIs

clean

declare function clean (root: string, options?: Options): Promise<Clean.Result>
 
// See https://git.io/fACtE for definition of Clean.Result

Parameters:

  • root: Path to the directory that contains source files.
  • options.deep (optional): Decides whether or not to dive deeper, default ignores node_modules and .git.
  • options.isSource (optional): Decides whether or not a file is a source, default chooses files with extensions of .ts or .tsx.
  • options.listTargets (optional): List corresponding build products of given source file.

Returns:

  • A promise of clean.Result.
  • clean.Result::targets is a list of all targeted files.
  • clean.Result::reports is a list of reports regarding deletion of targeted files.
  • clean.Result::success is a list of files that are successfully deleted, ideally equal to clean.Result::targets.
  • clean.Result::failure is a list of files that are targeted but failed to delete, ideally equal to [].

Effects:

  • Delete TypeScript compilation products if correspding TS source file is detected.

listAllTargets

declare function listAllTargets (root: string, options?: Options): Promise<ReadonlyArray<string>>

Parameters:

Returns:

  • A list of targeted files.

CLIs

clean-typescript-build <directory> [options]

Clean TypeScript compilation products

Options:
  --version     Show version number                                    [boolean]
  --help        Show help                                              [boolean]
  --directory   Directory that contains source files                    [string]
  --dry, -u     List files without deletion           [boolean] [default: false]
  --format, -f  Format of output to be printed to stdout
                             [choices: "text", "json", "none"] [default: "text"]
  --jsonIndent  JSON indentation when --format=json        [number] [default: 2]

License

MIT © Hoàng Văn Khải

Readme

Keywords

Package Sidebar

Install

npm i clean-typescript-build

Weekly Downloads

24

Version

0.1.5

License

MIT

Unpacked Size

16.4 kB

Total Files

29

Last publish

Collaborators

  • khai96_