Skip to content

Commit

Permalink
cli: remove unused dev argument
Browse files Browse the repository at this point in the history
  • Loading branch information
fracek committed Nov 29, 2024
1 parent 7eac89d commit a27f0b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 7 additions & 0 deletions change/apibara-0b94ab9f-bbed-4132-9114-27954f11f06e.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "cli: remove unused dev argument",
"packageName": "apibara",
"email": "[email protected]",
"dependentChangeType": "patch"
}
5 changes: 0 additions & 5 deletions packages/cli/src/cli/commands/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ export default defineCommand({
type: "string",
description: "Preset to use",
},
sink: {
type: "string",
description: "Sink to use",
},
},
async run({ args }) {
const rootDir = resolve((args.dir || args._dir || ".") as string);
Expand Down Expand Up @@ -103,7 +99,6 @@ export default defineCommand({
"start",
...(args.indexers ? ["--indexers", args.indexers] : []),
...(args.preset ? ["--preset", args.preset] : []),
...(args.sink ? ["--sink", args.sink] : []),
];

childProcess = spawn("node", childArgs, {
Expand Down

0 comments on commit a27f0b7

Please sign in to comment.