Skip to content

Commit 1990e12

Browse files
committed
fix(CLI): link the correct bin from package.json
1 parent b65ab1b commit 1990e12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "2.0.0",
44
"description": "A typescript starter for building javascript libraries and projects",
55
"bin": {
6-
"typescript-starter": "./build/main/cli/cli.js"
6+
"typescript-starter": "./bin/typescript-starter"
77
},
88
"main": "build/main/index.js",
99
"typings": "build/main/index.d.ts",

src/cli/args.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ export async function checkArgs(): Promise<
1010
const cli = meow(
1111
`
1212
Usage
13-
$ typescript-starter
13+
$ npx typescript-starter
1414
1515
Non-Interactive Usage
16-
$ typescript-starter <project-name> [options]
16+
$ npx typescript-starter <project-name> [options]
1717
1818
Options
1919
--description, -d package.json description
@@ -26,7 +26,7 @@ export async function checkArgs(): Promise<
2626
--no-vscode Don't include VS Code debugging config
2727
2828
Non-Interactive Example
29-
$ typescript-starter my-library -d 'do something, better'
29+
$ npx typescript-starter my-library -d 'do something, better'
3030
`,
3131
{
3232
flags: {

0 commit comments

Comments
 (0)