File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
"version" : " 2.0.0" ,
4
4
"description" : " A typescript starter for building javascript libraries and projects" ,
5
5
"bin" : {
6
- "typescript-starter" : " ./build/main/cli/cli.js "
6
+ "typescript-starter" : " ./bin/typescript-starter "
7
7
},
8
8
"main" : " build/main/index.js" ,
9
9
"typings" : " build/main/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ export async function checkArgs(): Promise<
10
10
const cli = meow (
11
11
`
12
12
Usage
13
- $ typescript-starter
13
+ $ npx typescript-starter
14
14
15
15
Non-Interactive Usage
16
- $ typescript-starter <project-name> [options]
16
+ $ npx typescript-starter <project-name> [options]
17
17
18
18
Options
19
19
--description, -d package.json description
@@ -26,7 +26,7 @@ export async function checkArgs(): Promise<
26
26
--no-vscode Don't include VS Code debugging config
27
27
28
28
Non-Interactive Example
29
- $ typescript-starter my-library -d 'do something, better'
29
+ $ npx typescript-starter my-library -d 'do something, better'
30
30
` ,
31
31
{
32
32
flags : {
You can’t perform that action at this time.
0 commit comments