We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c203a commit 771ce36Copy full SHA for 771ce36
package.json
@@ -1,8 +1,11 @@
1
{
2
"name": "create-typescript-api",
3
- "version": "1.0.0",
+ "version": "1.0.4",
4
"description": "A simple CLI to create a Typescript basic project to develop APIs",
5
"main": "bin/index.js",
6
+ "bin": {
7
+ "create-typescript-api": "./bin/index.js"
8
+ },
9
"scripts": {
10
"clean": "rimraf ./bin",
11
"compile": "babel ./src -d ./bin",
src/index.js
@@ -1,3 +1,5 @@
+#!/usr/bin/env node
+
import {h, mount} from 'ink';
import Cli from './cli';
0 commit comments