Skip to content

Commit

Permalink
Make dest optional for cli
Browse files Browse the repository at this point in the history
  • Loading branch information
sinclairnick committed Aug 26, 2024
1 parent 4b3d903 commit 61ac688
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["docs", "@webroute/fs", "create-webroute-app"]
"ignore": ["docs", "@webroute/fs"]
}
7 changes: 7 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# create-webroute-app

## 0.4.0

### Minor Changes

- Make dest optional
2 changes: 1 addition & 1 deletion packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-webroute-app",
"description": "",
"version": "0.3.0",
"version": "0.4.0",
"author": {
"name": "Nick Sinclair",
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import pkg from "../package.json";
program
.version(pkg.version)
.description("Initialize a webroute app")
.argument("<dest>", "Destination folder")
.argument("[dest]", "Destination folder")
.action(async (dest, opts) => {
intro(pc.bold("Create Webroute App"));

Expand Down

0 comments on commit 61ac688

Please sign in to comment.