Skip to content

Commit 51ec85d

Browse files
committed
Update deps.
1 parent 84d6eb7 commit 51ec85d

File tree

9 files changed

+903
-953
lines changed

9 files changed

+903
-953
lines changed

example/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
},
1515
"dependencies": {
1616
"@nkzw/babel-preset-fbtee": "workspace:*",
17-
"@nkzw/stack": "^2.3.1",
17+
"@nkzw/stack": "^2.3.2",
1818
"classnames": "^2.5.1",
1919
"fbtee": "workspace:*",
2020
"invariant": "^2.2.4",
2121
"normalize.css": "8.0.1",
22-
"react": "^19.2.0",
23-
"react-dom": "^19.2.0"
22+
"react": "^19.2.1",
23+
"react-dom": "^19.2.1"
2424
},
2525
"devDependencies": {
2626
"@babel/preset-react": "^7.28.5",
2727
"@nkzw/eslint-plugin-fbtee": "workspace:*",
28-
"@vitejs/plugin-react": "^5.1.0",
28+
"@vitejs/plugin-react": "^5.1.2",
2929
"invariant": "^2.2.4",
30-
"vite": "^7.2.0"
30+
"vite": "^7.2.7"
3131
}
3232
}

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,35 +31,35 @@
3131
"@babel/types": "^7.28.5",
3232
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
3333
"@jest/globals": "30.2.0",
34-
"@nkzw/eslint-config": "^3.2.0",
34+
"@nkzw/eslint-config": "^3.2.1",
3535
"@nkzw/eslint-plugin-fbtee": "workspace:*",
3636
"@nkzw/find-workspaces": "^1.0.0",
37-
"@prettier/plugin-oxc": "^0.0.4",
37+
"@prettier/plugin-oxc": "^0.1.3",
3838
"@testing-library/react": "^16.3.0",
3939
"@types/babel__core": "^7.20.5",
4040
"@types/babel__generator": "^7.27.0",
4141
"@types/babel__traverse": "^7.28.0",
4242
"@types/invariant": "^2.2.37",
4343
"@types/jest": "^30.0.0",
4444
"@types/json-diff": "^1.0.3",
45-
"@types/node": "^24.10.0",
45+
"@types/node": "^24.10.2",
4646
"@types/prettier-2": "npm:@types/prettier@^2.0.0",
47-
"@types/react": "^19.2.2",
48-
"@types/react-dom": "^19.2.2",
49-
"@types/yargs": "^17.0.34",
47+
"@types/react": "^19.2.7",
48+
"@types/react-dom": "^19.2.3",
49+
"@types/yargs": "^17.0.35",
5050
"eslint": "^9.39.1",
5151
"eslint-plugin-workspaces": "^0.11.0",
5252
"invariant": "^2.2.4",
5353
"jest": "^30.2.0",
5454
"jest-environment-jsdom": "^30.2.0",
5555
"npm-run-all2": "^8.0.4",
5656
"nullthrows": "^1.1.1",
57-
"prettier": "^3.6.2",
57+
"prettier": "^3.7.4",
5858
"prettier-2": "npm:prettier@^2.0.0",
59-
"prettier-plugin-packagejson": "^2.5.19",
60-
"prettier-plugin-tailwindcss": "^0.7.1",
61-
"react-dom": "^19.2.0",
62-
"tsdown": "^0.16.0",
59+
"prettier-plugin-packagejson": "^2.5.20",
60+
"prettier-plugin-tailwindcss": "^0.7.2",
61+
"react-dom": "^19.2.1",
62+
"tsdown": "^0.17.2",
6363
"typescript": "^5.9.3"
6464
},
6565
"engines": {

packages/babel-plugin-fbtee/src/__tests__/fbtStaticJSModule-test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ describe('fbt preserveWhitespace argument', () => {
194194
expect(
195195
snapshotTransform(
196196
withFbtImportStatement(
197-
`var x = fbt('one line', 'two\\nlines', {preserveWhitespace: true});`,
197+
String.raw`var x = fbt('one line', 'two\nlines', {preserveWhitespace: true});`,
198198
),
199199
),
200200
).toMatchSnapshot();
@@ -220,7 +220,7 @@ describe('fbt preserveWhitespace argument', () => {
220220
expect(
221221
snapshotTransform(
222222
withFbtImportStatement(
223-
`var x = fbt('two\\nlines', 'one line', {preserveWhitespace: false});`,
223+
String.raw`var x = fbt('two\nlines', 'one line', {preserveWhitespace: false});`,
224224
),
225225
),
226226
).toMatchSnapshot();
@@ -230,7 +230,7 @@ describe('fbt preserveWhitespace argument', () => {
230230
expect(
231231
snapshotTransform(
232232
withFbtImportStatement(
233-
`var x = fbt('one line', 'two\\nlines', {preserveWhitespace: false});`,
233+
String.raw`var x = fbt('one line', 'two\nlines', {preserveWhitespace: false});`,
234234
),
235235
),
236236
).toMatchSnapshot();

packages/babel-plugin-fbtee/src/__tests__/jsx-test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,11 +474,11 @@ describe('Test declarative (jsx) fbt syntax translation', () => {
474474
expect(
475475
snapshotTransformKeepJsx(
476476
withFbtImportStatement(
477-
`// A backslash \\ in comments
477+
String.raw`// A backslash \ in comments
478478
<fbt desc="unicode characters">
479-
A copyright sign {'\\u00A9'},
480-
a multi byte character {'\\uD83D\\uDCA9'},
481-
and a backslash {'\\\\'}.
479+
A copyright sign {'\u00A9'},
480+
a multi byte character {'\uD83D\uDCA9'},
481+
and a backslash {'\\'}.
482482
</fbt>`,
483483
),
484484
),

packages/eslint-plugin-fbtee/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"build": "tsdown src/index.tsx -d lib --target=node22 --format=esm --clean --dts"
1919
},
2020
"dependencies": {
21-
"@typescript-eslint/utils": "^8.46.3"
21+
"@typescript-eslint/utils": "^8.49.0"
2222
},
2323
"devDependencies": {
24-
"@typescript-eslint/rule-tester": "^8.46.3"
24+
"@typescript-eslint/rule-tester": "^8.49.0"
2525
}
2626
}

0 commit comments

Comments
 (0)