Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mj850 committed Jul 17, 2024
1 parent ce6b34d commit b16b588
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions packages/create-sei/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @sei-js/create-sei-app

## 0.0.0-internal-20240717005255

### Major Changes

- edit

## 0.0.0-internal-20240717005002

### Major Changes

- with options

## 0.0.0-internal-20240717003256

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-sei/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sei-js/create-sei",
"version": "0.0.0-internal-20240717003256",
"version": "0.0.0-internal-20240717005255",
"module": "dist/main.js",
"type": "module",
"bin": {
Expand Down
6 changes: 3 additions & 3 deletions packages/create-sei/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ program
.command('app')
.description('Create a new SEI dApp')
.option('-n, --name <name>', `Specify the name of your dApp. Name must be a valid package name.`)
.option('-f, --framework <framework>', `Specify the app framework to use ${Object.values(FrontendScaffolding)}`)
.option('-e, --ecosystem <ecosystem>', `Specify the ecosystem to use ${Object.values(RPCIntegrationType)}`)
.option('-l, --library <library>', `Specify the EVM library to use ${Object.values(EVMLibrary)}. Only used if ecosystem chosen is 'EVM'`)
.option('-f, --framework <framework>', `Specify the app framework to use: [${Object.values(FrontendScaffolding).join(', ')}]`)
.option('-e, --ecosystem <ecosystem>', `Specify the ecosystem to use: [${Object.values(RPCIntegrationType).join(', ')}]`)
.option('-l, --library <library>', `Specify the EVM library to use: [${Object.values(EVMLibrary).join(', ')}]. Only used if ecosystem chosen is 'EVM'`)
.action(async (options: WizardOptions) => {
try {
await runWizard(options);
Expand Down

0 comments on commit b16b588

Please sign in to comment.