Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Nov 28, 2024
1 parent 873ee92 commit 3dfeb49
Show file tree
Hide file tree
Showing 8 changed files with 1,753 additions and 4,269 deletions.
3,375 changes: 1,070 additions & 2,305 deletions .pnp.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"nx": "^20.1.3",
"prettier": "^3.4.0",
"prettier": "^3.4.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-pkgsort": "^0.2.1",
"prettier-plugin-sort-json": "^4.0.0",
Expand Down
24 changes: 12 additions & 12 deletions packages/components/dev/viteI18nPlugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ describe("vite i18n plugin", () => {

expect(load).toBeDefined();
expect(load.code).toBeDefined();
expect(load.code).toMatchInlineSnapshot(`
"export default {"bar": { "bar": (args) => \`test with variable \${args.var}\`,
"bar.simple": \`test simple variable\`,
},"foo": { "foo": (args) => \`bar \${args.var}\`,
"foo.simple": \`test simple variable\`,
}};"
`);
expect(load.code).toMatch(
'export default {"bar": { "bar": (args) => `test with variable ${args.var}`,\n' +
' "bar.simple": `test simple variable`,\n' +
'},"foo": { "foo": (args) => `bar ${args.var}`,\n' +
' "foo.simple": `test simple variable`,\n' +
"}};",
);
}
});

Expand Down Expand Up @@ -111,11 +111,11 @@ describe("vite i18n plugin", () => {

expect(load).toBeDefined();
expect(load.code).toBeDefined();
expect(load.code).toMatchInlineSnapshot(`
"export default {"bar": { "bar": (args) => \`test with variable \${args.var}\`,
"bar.simple": \`test simple variable\`,
}};"
`);
expect(load.code).toMatch(
'export default {"bar": { "bar": (args) => `test with variable ${args.var}`,\n' +
' "bar.simple": `test simple variable`,\n' +
"}};",
);
}
});

Expand Down
16 changes: 8 additions & 8 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"dot-prop": "^9.0.0",
"framer-motion": "^11.11.17",
"framer-motion": "^11.12.0",
"html-react-parser": "^5.1.18",
"invariant": "^2.2.4",
"luxon": "^3.5.0",
Expand Down Expand Up @@ -478,33 +478,33 @@
"@testing-library/react": "~16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/invariant": "^2.2.37",
"@types/node": "22.10.0",
"@types/node": "22.10.1",
"@types/prettier": "^3.0.0",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/rollup": "^0.54.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "~2.1.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "~2.1.6",
"decamelize": "^6.0.0",
"fs-jetpack": "^5.1.0",
"glob": "^10.4.5",
"happy-dom": "^15.11.6",
"happy-dom": "^15.11.7",
"next": "^14.2.18",
"nx": "^20.1.3",
"postcss": "^8.4.49",
"postcss-nested-import": "^1.3.0",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.0",
"prettier": "^3.4.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.3.1",
"react-element-to-jsx-string": "^15.0.0",
"react-hook-form": "^7.53.2",
"rimraf": "^6.0.1",
"rollup": "~4.24.4",
"rollup": "~4.27.4",
"sass": "^1.81.0",
"storybook": "^8.4.5",
"storybook-addon-rtl": "^1.0.1",
Expand All @@ -516,7 +516,7 @@
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "~2.1.5",
"vitest": "~2.1.6",
"yaml": "^2.6.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/design-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"nx": "^20.1.3",
"prettier": "^3.4.0",
"prettier": "^3.4.1",
"style-dictionary": "^4.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"webpack": "^5.96.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@yarnpkg/pnpify": "^4.1.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/react-tunnel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.10.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"happy-dom": "^15.11.6",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.6",
"happy-dom": "^15.11.7",
"nx": "^20.1.3",
"prettier": "^3.4.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2",
Expand All @@ -52,7 +52,7 @@
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^2.1.5"
"vitest": "^2.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
Expand Down
Loading

0 comments on commit 3dfeb49

Please sign in to comment.