Skip to content

Commit 1dea800

Browse files
Update README and snapshot testing
1 parent b29cb5f commit 1dea800

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
filters: |
8888
ui:
89-
- 'packages/ui-next/**'
89+
- 'packages/ui/**'
9090
- 'packages/keychain/**'
9191
- '**/package.json'
9292
- '**/pnpm-lock.yaml'
@@ -146,7 +146,7 @@ jobs:
146146
147147
# Check both packages
148148
check_snapshots "keychain" "packages/keychain/__image_snapshots__"
149-
check_snapshots "ui-next" "packages/ui-next/__image_snapshots__"
149+
check_snapshots "ui" "packages/ui/__image_snapshots__"
150150
151151
# Set environment variables
152152
if [ -s diff_info.txt ]; then
@@ -194,7 +194,7 @@ jobs:
194194
195195
// Group changes by package and type
196196
const changes = {
197-
'ui-next': { diffs: [], updates: [] },
197+
'ui': { diffs: [], updates: [] },
198198
'keychain': { diffs: [], updates: [] }
199199
};
200200

Dockerfile.storybook

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ WORKDIR /app
3232
# Copy package files for installation
3333
COPY package.json pnpm-lock.yaml ./
3434
COPY packages/keychain/package.json ./packages/keychain/
35-
COPY packages/ui-next/package.json ./packages/ui-next/
35+
COPY packages/ui/package.json ./packages/ui/
3636

3737
# Install dependencies
3838
RUN pnpm install --frozen-lockfile

packages/ui/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
### Storybook
66

77
```sh
8-
pnpm ui:next storybook
8+
pnpm ui storybook
99
```
1010

1111
### Generate shadcn component
1212

1313
```sh
14-
cd packages/ui-next
14+
cd packages/ui
1515
pnpm dlx shadcn-ui@latest add <component-name>
1616
pnpm format
1717
```

0 commit comments

Comments
 (0)