Skip to content

Commit ffaf395

Browse files
Update README and snapshot testing
1 parent d0f4c77 commit ffaf395

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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

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)