chore(deps): update devdependencies (non-major)
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@codedependant/semantic-release-docker | devDependencies | patch | 4.5.0 -> 4.5.1 |
@commitlint/cli (source) | devDependencies | minor | 18.4.4 -> 18.6.0 |
@commitlint/config-conventional (source) | devDependencies | minor | 18.4.4 -> 18.6.0 |
@commitlint/cz-commitlint (source) | devDependencies | minor | 18.4.4 -> 18.6.0 |
prettier (source) | devDependencies | patch | 3.2.4 -> 3.2.5 |
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v18.6.0
Note: Version bump only for package @commitlint/cli
v18.5.0
Features
18.4.4 (2024-01-04)
Note: Version bump only for package @commitlint/cli
18.4.3 (2023-11-21)
Note: Version bump only for package @commitlint/cli
18.4.2 (2023-11-16)
Note: Version bump only for package @commitlint/cli
18.4.1 (2023-11-12)
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v18.6.0
Features
v18.5.0
Note: Version bump only for package @commitlint/config-conventional
18.4.4 (2024-01-04)
Note: Version bump only for package @commitlint/config-conventional
18.4.3 (2023-11-21)
Note: Version bump only for package @commitlint/config-conventional
18.4.2 (2023-11-16)
Note: Version bump only for package @commitlint/config-conventional
conventional-changelog/commitlint (@commitlint/cz-commitlint)
v18.6.0
Note: Version bump only for package @commitlint/cz-commitlint
v18.5.0
Note: Version bump only for package @commitlint/cz-commitlint
18.4.4 (2024-01-04)
Note: Version bump only for package @commitlint/cz-commitlint
18.4.3 (2023-11-21)
Note: Version bump only for package @commitlint/cz-commitlint
18.4.2 (2023-11-16)
Note: Version bump only for package @commitlint/cz-commitlint
18.4.1 (2023-11-12)
Note: Version bump only for package @commitlint/cz-commitlint
prettier/prettier (prettier)
v3.2.5
#15968 by @sosukesuzuki)
Support Angular inline styles as single template literal (Angular v17 supports single string inline styles.
// Input
@​Component({
template: `<div>...</div>`,
styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: `<div>...</div>`,
styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: `<div>...</div>`,
styles: `
h1 {
color: blue;
}
`,
})
export class AppComponent {}
#15969 by @JounQin)
Unexpected embedded formatting for Angular template (Computed template should not be considered as Angular component template
// Input
const template = "foobar";
@​Component({
[template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}
// Prettier 3.2.4
const template = "foobar";
@​Component({
[template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}
// Prettier 3.2.5
const template = "foobar";
@​Component({
[template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}
"json"
parser for tsconfig.json
by default (#16012 by @sosukesuzuki)
Use In v3.2.0, we introduced "jsonc"
parser which adds trialing comma by default.
When adding a new parser we also define how it will be used based on the linguist-languages
data.
tsconfig.json
is a special file used by TypeScript, it uses .json
file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json
file extension.
We decide to treat it as a JSON file for now to avoid the extra configuration step.
To keep using the "jsonc"
parser for your tsconfig.json
files, add the following to your .pretterrc
file
{
"overrides": [
{
"files": ["tsconfig.json", "jsconfig.json"],
"options": {
"parser": "jsonc"
}
}
]
}
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.