0.0.10 • Published 4 years ago

types-checker v0.0.10

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

types-checker

Dependency Status npm npm version Build Status

Check missing type definition modules for your Typescript project

You may forget to add type definitions for your projects. It's hard to add all dependencies at the same time. You need to be sure that how many modules have definition module like @types/....

types-checker will do it for you

cd path/of/your/project
types-checker # aliases ts-checker OR tscheck

asciicast

Usage

Default params

tscheck
Starting types-checker@0.0.3
These modules are missing @types/config @types/node
Please run with '--all' param if you want to install these dependencies
Done in 1.66s

Using with Yarn

tscheck -a
Starting types-checker@0.0.3
These modules are missing @types/config @types/node
Running yarn add --dev @types/config @types/node
Done in 2.66s

Using with NPM

tscheck -a -N
Starting types-checker@0.0.3
These modules are missing @types/config @types/node
Running npm install --save-dev @types/config @types/node
Done in 2.00s

Interactive Mode

asciicast

Installing

yarn add global types-checker

or

npm i -g types-checker

Options

types-checker --help

Usage: types-checker [options]

Options:

  -V, --version           output the version number
  -l, --logger            Debug output. See all logs
  -c, --no-color          Disable colored output
  -a, --install           Install all possible type definitions
  -e, --error             Return the number of packages as exit code
  -p, --path [value]      Path for package.json file
  -i, --interactive       Interactive mode
  -N, --use-npm           Use NPM instead of Yarn
  -D, --dev-dependencies  Search for devDependencies
  -h, --help              output usage information
0.0.10

4 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago