toolcheck

Alert if user does not have required executables

MIT 11 个版本
安装
npm install toolcheck
yarn add toolcheck
pnpm add toolcheck
bun add toolcheck
README

toolcheck

Alert if user does not have required executables

Usage

Configuration Files

This package uses cosmiconfig to load configuration, therefore user can write configuration into .toolcheckrc, .toolcheckrc.yaml, .toolcheckrc.json or field "toolcheck" of package.json.

Configration Object Structure

interface Configration {
  names: string[]
}

Example

.toolcheckrc:

{
  "names": [
    "git",
    "bash"
  ]
}

How it works?

When either git or bash is missing, npm install will fail and prints missing executables.

License

MIT © Hoàng Văn Khải

版本列表
0.1.4 2020-03-03
0.1.3 2019-11-03
0.1.2 2019-11-03
0.1.1 2019-10-05
0.1.0 2019-10-05
0.0.5 2018-09-30
0.0.4 2018-09-30
0.0.3 2018-09-30
0.0.2 2018-09-30
0.0.1 2018-09-30
0.0.0 2018-09-30