-
Notifications
You must be signed in to change notification settings - Fork 838
feat: add .gitkeep files to preserve empty directories (#269) #282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
a359909
90596db
2f715d1
a046536
ca78a3b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| export {}; | ||
| //# sourceMappingURL=index.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| 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 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
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.