Skip to content

Commit

Permalink
question ask
Browse files Browse the repository at this point in the history
  • Loading branch information
NazmusSayad committed Aug 21, 2024
1 parent 9154dcf commit c155146
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "npmize",
"description": "Let's create an npm package without worrying about anything.",
"version": "1.0.6",
"version": "1.0.7",
"bin": "./dist/index.js",
"scripts": {
"lab": "nodemon ./src/__lab.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/__lab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ console.clear()

import app from './main'

// app.start(['init', '../npmize-test'])
app.start(['dev', '../npmize-test', '--node'])
app.start(['init', '../npmize-test'])
// app.start(['dev', '../npmize-test', '--node'])
// app.start(['build', '../npmize-test'])
6 changes: 5 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ app
arguments: [
{
name: 'name',
type: t.string().description('Name of the package'),
type: t
.string()
.description('Name of the package')
// .ask("What's the name of the package?")
.default('.'),
},
],

Expand Down

0 comments on commit c155146

Please sign in to comment.