Skip to content

Conversation

@tradeshift-renovate
Copy link

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies patch 3.2.4 -> 3.2.5

Release Notes

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

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

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@tradeshift-renovate tradeshift-renovate bot added dependencies Pull requests that update a dependency file dev labels Feb 6, 2024
@tradeshift-renovate tradeshift-renovate bot enabled auto-merge (squash) February 6, 2024 14:21
@tradeshift-renovate tradeshift-renovate bot merged commit f0eb7a5 into master Feb 6, 2024
@tradeshift-renovate tradeshift-renovate bot deleted the renovate/prettier-3.x-lockfile branch February 8, 2024 06:23
Tsuesun pushed a commit that referenced this pull request Apr 11, 2024
Co-authored-by: tradeshift-renovate[bot] <121954292+tradeshift-renovate[bot]@users.noreply.github.com>
Tsuesun pushed a commit that referenced this pull request Apr 11, 2024
Co-authored-by: tradeshift-renovate[bot] <121954292+tradeshift-renovate[bot]@users.noreply.github.com>
Tsuesun pushed a commit that referenced this pull request Apr 11, 2024
Co-authored-by: tradeshift-renovate[bot] <121954292+tradeshift-renovate[bot]@users.noreply.github.com>
celiogafesi pushed a commit that referenced this pull request Jul 24, 2024
Co-authored-by: tradeshift-renovate[bot] <121954292+tradeshift-renovate[bot]@users.noreply.github.com>
celiogafesi pushed a commit that referenced this pull request Jul 24, 2024
Co-authored-by: tradeshift-renovate[bot] <121954292+tradeshift-renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file dev

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants