Closed renovate[bot] closed 2 months ago
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Name | Link |
---|---|
Latest commit | cf4e76a511abb215fc9802830b30508b1beb6647 |
Latest deploy log | https://app.netlify.com/sites/plugnmeet/deploys/66cde45c56e6640008eb2180 |
Deploy Preview | https://deploy-preview-718--plugnmeet.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Path | Size | Loading time (3g) | Running time (snapdragon) | Total time |
---|---|---|---|---|
JS files | 1.11 MB (0%) | 22.7 s (0%) | 5.2 s (-16.63% š½) | 27.9 s |
CSS files | 26.26 KB (0%) | 526 ms (0%) | 0 ms (+100% šŗ) | 526 ms |
Locales files | 86.27 KB (0%) | 1.8 s (0%) | 0 ms (+100% šŗ) | 1.8 s |
Image files | 1.65 MB (0%) | 33.8 s (0%) | 0 ms (+100% šŗ) | 33.8 s |
Font files | 266.46 KB (0%) | 5.4 s (0%) | 0 ms (+100% šŗ) | 5.4 s |
Webassembly files | 1.35 MB (0%) | 27.7 s (0%) | 0 ms (+100% šŗ) | 27.7 s |
All assets | 4.49 MB (0%) | 91.9 s (0%) | 4.6 s (-4.31% š½) | 96.5 s |
This PR contains the following updates:
3.3.2
->3.3.3
Release Notes
prettier/prettier (prettier)
### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#16391](https://togithub.com/prettier/prettier/pull/16391) by [@cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.2 foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.3 foo ? (bar ?? foo) : baz; (foo ?? bar) ? a : b; a ? b : (foo ?? bar); ``` ##### Add parentheses for decorator expressions ([#16458](https://togithub.com/prettier/prettier/pull/16458) by [@y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // Input @(foo`tagged template`) class X {} // Prettier 3.3.2 @foo`tagged template` class X {} // Prettier 3.3.3 @(foo`tagged template`) class X {} ``` ##### Support `@let` declaration syntax ([#16474](https://togithub.com/prettier/prettier/pull/16474) by [@sosukesuzuki](https://togithub.com/sosukesuzuki)) Adds support for Angular v18 `@let` declaration syntax. Please see the following code example. The `@let` declaration allows you to define local variables within the template: ```html @let name = 'Frodo';Dashboard for {{name}}
Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.Configuration
š Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
š¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
ā» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
š Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.