crossts
v0.2.2
Published
Generates crosshub.json files for CrossHub Chrome Extension
Downloads
2
Readme
CrossTS
Generates crosshub.json files for the CrossHub Chrome Extension
Installation
$ npm install -g crossts
Usage
$ crossts path/to/file.ts path/to/another_file.ts ... > crosshub.json
If you want to e.g. feed all files from test
and src
directories, you could use find
:
$ find src test \( -name "*.ts" -o -name "*.tsx" \) -type f -exec crossts {} + > crosshub.json