-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
558e0d9
commit e6ebfe0
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 0.1.0 (2020-12-12) | ||
|
||
|
||
### Features | ||
|
||
* **cli:** autofix typeScript types to be imported using `import type` ([558e0d9](https://github.com/JamieMason/ts-import-types-cli/commit/558e0d92000ae4791b405dd893d6ba7471a1f6fc)) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ts-import-types-cli | ||
|
||
Autofix TypeScript types to be imported using `import type` | ||
|
||
## Installation | ||
|
||
This is a [Node.js](https://nodejs.org/) module available through the | ||
[npm registry](https://www.npmjs.com/). It can be installed using the | ||
[`npm`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally) | ||
or | ||
[`yarn`](https://yarnpkg.com/en/) | ||
command line tools. | ||
|
||
```sh | ||
npm install ts-import-types-cli --save | ||
``` | ||
|
||
## Dependencies | ||
|
||
- [chalk](https://ghub.io/chalk): Terminal string styling done right | ||
- [commander](https://ghub.io/commander): the complete solution for node.js command-line programs | ||
- [ts-morph](https://ghub.io/ts-morph): TypeScript compiler wrapper for static analysis and code manipulation. | ||
|
||
## Dev Dependencies | ||
|
||
- [@types/node](https://ghub.io/@types/node): TypeScript definitions for Node.js | ||
- [ts-node](https://ghub.io/ts-node): TypeScript execution environment and REPL for node.js, with source map support | ||
- [typescript](https://ghub.io/typescript): TypeScript is a language for application scale JavaScript development | ||
|
||
## License | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ts-import-types-cli", | ||
"description": "Autofix TypeScript types to be imported using `import type`", | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)", | ||
"bin": { | ||
"ts-import-types-cli": "dist/bin.js" | ||
|