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 d980659
Showing 1 changed file with 0 additions and 5 deletions.
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 d980659

Please sign in to comment.