Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/fix-option-parsing.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @dtechvision/indexingco-cli

## 0.0.7

### Patch Changes

- [#4](https://github.com/dtechvision/indexing-co-cli/pull/4) [`36ba4b8`](https://github.com/dtechvision/indexing-co-cli/commit/36ba4b849e2389cb8fc1447536d774abd2dd3134) Thanks [@SamuelLHuber](https://github.com/SamuelLHuber)! - Fixed CLI argument parsing for commands with many options

- Fixed a bug where option values (e.g., `--transformation my-value`) were incorrectly detected as positional arguments, causing a misleading hint about argument ordering
- Unified `pipelines create` to use positional `name` argument (at the end) instead of `--name` option, matching the pattern used by `filters create` and `transformations create`
- Added CLAUDE.md with development guidance for future CLI option additions

## 0.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dtechvision/indexingco-cli",
"version": "0.0.6",
"version": "0.0.7",
"type": "module",
"packageManager": "bun@1.1.34",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ const cli = Command.make("indexingco").pipe(

export const run = Command.run(cli, {
name: "Indexing CLI",
version: "0.0.6"
version: "0.0.7"
})