Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 80c28e2

Browse files
committed
Refactor UI components
1 parent 58c5fc1 commit 80c28e2

38 files changed

+266
-257
lines changed

.idea/codefixlabs.iml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Update `package.json`
3030
"build": "next build",
3131
"start": "next start",
3232
"lint": "next lint",
33-
+ "clean": "rm -rf .next",
33+
+ "clean": "rm -rf .next && rm -rf node_modules",
3434
+ "db:generate": "prisma generate",
3535
+ "db:push": "prisma db push",
3636
+ "db:studio": "prisma studio",

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"build": "next build",
77
"build-storybook": "storybook build",
8-
"clean": "rm -rf .next .turbo node_modules",
8+
"clean": "rm -rf .next && rm -rf .turbo && rm -rf node_modules",
99
"dev": "next dev",
1010
"lint": "next lint",
1111
"start": "next start",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
"build": "turbo run build",
1010
"changeset": "changeset",
11-
"clean": "turbo run clean && rm -rf .turbo node_modules",
11+
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
1212
"dev": "turbo run dev",
1313
"dev:packages": "turbo run dev --filter='./packages/*'",
1414
"force:build": "turbo run clean && turbo run build --force",

packages/hooks/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @codefixlabs/hooks
22

3+
## 0.1.34
4+
5+
### Patch Changes
6+
7+
- Refactor UI components
8+
39
## 0.1.33
410

511
### Patch Changes

packages/hooks/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/hooks",
3-
"version": "0.1.33",
3+
"version": "0.1.34",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {
@@ -24,7 +24,7 @@
2424
"scripts": {
2525
"build": "tsup",
2626
"check-types": "tsc --noEmit",
27-
"clean": "rm -rf dist .turbo node_modules",
27+
"clean": "rm -rf dist && rm -rf .turbo && rm -rf node_modules",
2828
"dev": "tsup --watch",
2929
"lint": "eslint src/"
3030
},

packages/lib/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @codefixlabs/lib
22

3+
## 0.1.37
4+
5+
### Patch Changes
6+
7+
- Refactor UI components
8+
39
## 0.1.36
410

511
### Patch Changes

packages/lib/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/lib",
3-
"version": "0.1.36",
3+
"version": "0.1.37",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {
@@ -24,7 +24,7 @@
2424
"scripts": {
2525
"build": "tsup",
2626
"check-types": "tsc --noEmit",
27-
"clean": "rm -rf dist .turbo node_modules",
27+
"clean": "rm -rf dist && rm -rf .turbo && rm -rf node_modules",
2828
"dev": "tsup --watch",
2929
"lint": "eslint src/"
3030
},

packages/tailwindcss/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @codefixlabs/tailwindcss
22

3+
## 0.1.47
4+
5+
### Patch Changes
6+
7+
- Refactor UI components
8+
39
## 0.1.46
410

511
### Patch Changes

packages/tailwindcss/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/tailwindcss",
3-
"version": "0.1.46",
3+
"version": "0.1.47",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {
@@ -24,7 +24,7 @@
2424
"scripts": {
2525
"build": "tsup",
2626
"check-types": "tsc --noEmit",
27-
"clean": "rm -rf dist .turbo node_modules",
27+
"clean": "rm -rf dist && rm -rf .turbo && rm -rf node_modules",
2828
"dev": "tsup --watch",
2929
"lint": "eslint src/"
3030
},

0 commit comments

Comments
 (0)