Skip to content
Open
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ out
.nuxt

# Build output
dist/
# dist/ - Commented out to allow git installation from GitHub
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not too keen on check in /dist since in my experience this would get outdated pretty quickly and we would have to ensure this always up to date.


# Gatsby files
.cache/
Expand Down
2 changes: 2 additions & 0 deletions dist/cli/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export {};
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/cli/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

246 changes: 246 additions & 0 deletions dist/cli/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/cli/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions dist/commands/change.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
export declare class ChangeCommand {
private converter;
constructor();
/**
* Show a change proposal.
* - Text mode: raw markdown passthrough (no filters)
* - JSON mode: minimal object with deltas; --deltas-only returns same object with filtered deltas
* Note: --requirements-only is deprecated alias for --deltas-only
*/
show(changeName?: string, options?: {
json?: boolean;
requirementsOnly?: boolean;
deltasOnly?: boolean;
noInteractive?: boolean;
}): Promise<void>;
/**
* List active changes.
* - Text default: IDs only; --long prints minimal details (title, counts)
* - JSON: array of { id, title, deltaCount, taskStatus }, sorted by id
*/
list(options?: {
json?: boolean;
long?: boolean;
}): Promise<void>;
validate(changeName?: string, options?: {
strict?: boolean;
json?: boolean;
noInteractive?: boolean;
}): Promise<void>;
private getActiveChanges;
private extractTitle;
private countTasks;
private printNextSteps;
}
//# sourceMappingURL=change.d.ts.map
1 change: 1 addition & 0 deletions dist/commands/change.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading