Meta: Upgrade prettier to version 3.6.2

This version is installed by default nowadays and has slight differences
from 3.3.3.
This commit is contained in:
Timothy Flynn 2025-10-31 12:00:36 -04:00 committed by Tim Flynn
parent 019c529c07
commit 583164e412
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
- name: Install JS Dependencies
shell: bash
run: npm install -g prettier@3.3.3
run: npm install -g prettier@3.6.2
- name: Lint
run: ${{ github.workspace }}/Meta/lint-ci.sh

View File

@ -90,7 +90,7 @@ test("currying", () => {
test("with comma operator", () => {
let foo, bar;
(foo = bar), baz => {};
((foo = bar), baz => {});
expect(foo).toBe(undefined);
expect(bar).toBe(undefined);
});