Skip to content

Commit 5e124cd

Browse files
committed
feat(ui-components): prepublish
1 parent ab0ba1d commit 5e124cd

File tree

97 files changed

+562
-398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+562
-398
lines changed

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ CODEOWNERS
3939
# Public Folders
4040
apps/site/public
4141

42+
# Dist
43+
dist
44+
4245
# Prettier's Handlebar parser is limited and chokes on some syntax features
4346
# https://github.com/prettier/prettier/issues/11834
4447
scripts/release-post/template.hbs

apps/site/styles/effects.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@reference '@node-core/ui-components/styles/index.css';
2+
13
@utility turtle {
24
@apply animate-surf
35
absolute

apps/site/styles/locales.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@reference '@node-core/ui-components/styles/index.css';
2+
13
/**
24
* To enhance readability for Korean users, line spacing is increased,
35
* line breaks in the middle of words are prevented, and long words are

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default [
1818
'**/.open-next',
1919
'test-results',
2020
'playwright-report',
21+
'dist',
2122
],
2223
},
2324
{

packages/ui-components/.storybook/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { Preview, ReactRenderer } from '@storybook/react';
44

55
import { STORYBOOK_MODES, STORYBOOK_SIZES } from './constants';
66

7-
import '#ui/styles/index.css';
7+
import '../src/styles/index.css';
88

99
const preview: Preview = {
1010
parameters: {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
storybook-static
2+
dist

packages/ui-components/.stylelintrc.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default {
2626
plugins: [
2727
'stylelint-order',
2828
'stylelint-selector-bem-pattern',
29-
'#ui/stylelint/one-utility-class-per-line.mjs',
29+
'./src/stylelint/one-utility-class-per-line.mjs',
3030
],
3131
rules: {
3232
// Enforces Element Class Names to be camelCase

packages/ui-components/__design__/node-logos.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
NodejsStackedDark,
99
NodejsStackedLight,
1010
NodejsStackedWhite,
11-
} from '#ui/Icons/Logos';
11+
} from '../src/Icons/Logos';
1212

1313
export const HorizontalLogo: StoryObj = {
1414
render: () => <Nodejs width={267} height={80} />,

packages/ui-components/__design__/platform-logos.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
Choco,
99
N,
1010
Volta,
11-
} from '#ui/Icons/InstallationMethod';
12-
import { Apple, Linux, Microsoft, AIX } from '#ui/Icons/OperatingSystem';
11+
} from '../src/Icons/InstallationMethod';
12+
import { Apple, Linux, Microsoft, AIX } from '../src/Icons/OperatingSystem';
1313

1414
const osIcons = [Apple, Linux, Microsoft, AIX];
1515
const installMethodIcons = [Docker, Homebrew, NVM, Devbox, Choco, N, Volta];

packages/ui-components/__design__/social-logos.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
Mastodon,
99
Slack,
1010
X,
11-
} from '#ui/Icons/Social';
11+
} from '../src/Icons/Social';
1212

1313
const socialIcons = [
1414
[GitHub, Mastodon, LinkedIn],

0 commit comments

Comments
 (0)