clean-typescript-build

Some commands in needs for nodemonorepo

MIT 14 个版本
安装
npm install clean-typescript-build
yarn add clean-typescript-build
pnpm add clean-typescript-build
bun add clean-typescript-build
README

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

版本列表
0.1.5 2020-01-12
0.1.4 2019-10-05
0.1.3 2019-10-05
0.1.2 2019-10-05
0.1.1 2019-09-16
0.1.0 2019-03-02
0.0.7 2018-09-29
0.0.6 2018-09-23
0.0.5 2018-09-19
0.0.4 2018-08-31
0.0.3 2018-08-31
0.0.2 2018-08-31
0.0.1 2018-08-30
0.0.0 2018-08-30