Skip to content

Commit 9882094

Browse files
authored
chore(ui): don't depend on pnpm syntax (#7771)
1 parent 3eb8f8c commit 9882094

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

packages/ui-components/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"tailwindcss": "~4.0.17"
4949
},
5050
"devDependencies": {
51-
"@node-core/website-i18n": "workspace:*",
5251
"@storybook/addon-controls": "^8.6.12",
5352
"@storybook/addon-interactions": "^8.6.12",
5453
"@storybook/addon-styling-webpack": "^1.0.1",

packages/ui-components/types.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type { LocaleConfig } from '@node-core/website-i18n/types';
21
import type {
32
SVGProps,
43
AnchorHTMLAttributes,
@@ -19,7 +18,8 @@ export type FormattedMessage =
1918
| ReactElement<HTMLElement, string | JSXElementConstructor<HTMLElement>>
2019
| ReadonlyArray<ReactNode>;
2120

22-
export type SimpleLocaleConfig = Pick<
23-
LocaleConfig,
24-
'name' | 'code' | 'localName'
25-
>;
21+
export type SimpleLocaleConfig = {
22+
code: string;
23+
localName: string;
24+
name: string;
25+
};

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)