Skip to content
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

fix(npm): add missing --use-branch-tags flag to TS options #874

Merged
merged 2 commits into from
Sep 23, 2024
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
2 changes: 1 addition & 1 deletion npm/git-cliff/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default tseslint.config(
{
languageOptions: {
parserOptions: {
project: "./tsconfig.eslint.json",
project: "./tsconfig.json",
},
},
}
Expand Down
14 changes: 7 additions & 7 deletions npm/git-cliff/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@
"execa": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@eslint/js": "^9.11.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.11.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "2.6.0",
Expand Down
2 changes: 2 additions & 0 deletions npm/git-cliff/src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export type Options = Partial<{
unreleased: boolean;
/** Sorts the tags topologically */
topoOrder: boolean;
/** Include only the tags that belong to the current branch */
useBranchTags: boolean;
/** Disables the external command execution */
noExec: boolean;
/** Prints changelog context as JSON */
Expand Down
Loading
Loading