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

Commit d327df8

Browse files
committed
chore: update tsup config
1 parent 9956a02 commit d327df8

File tree

15 files changed

+1099
-980
lines changed

15 files changed

+1099
-980
lines changed

apps/docs/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
"@codefixlabs/ui": "workspace:*",
1818
"@faker-js/faker": "^8.2.0",
1919
"@hookform/resolvers": "^3.3.2",
20-
"@storybook/addon-a11y": "^7.5.2",
21-
"@storybook/addon-essentials": "^7.5.2",
22-
"@storybook/addon-interactions": "^7.5.2",
23-
"@storybook/addon-links": "^7.5.2",
24-
"@storybook/blocks": "^7.5.2",
25-
"@storybook/manager-api": "^7.5.2",
26-
"@storybook/nextjs": "^7.5.2",
27-
"@storybook/react": "^7.5.2",
20+
"@storybook/addon-a11y": "^7.5.3",
21+
"@storybook/addon-essentials": "^7.5.3",
22+
"@storybook/addon-interactions": "^7.5.3",
23+
"@storybook/addon-links": "^7.5.3",
24+
"@storybook/blocks": "^7.5.3",
25+
"@storybook/manager-api": "^7.5.3",
26+
"@storybook/nextjs": "^7.5.3",
27+
"@storybook/react": "^7.5.3",
2828
"@storybook/testing-library": "^0.2.2",
29-
"@storybook/theming": "^7.5.2",
30-
"@storybook/types": "^7.5.2",
29+
"@storybook/theming": "^7.5.3",
30+
"@storybook/types": "^7.5.3",
3131
"@tanstack/react-table": "^8.10.7",
3232
"class-variance-authority": "^0.7.0",
3333
"date-fns": "^2.30.0",
@@ -36,16 +36,16 @@
3636
"react": "^18.2.0",
3737
"react-day-picker": "^8.9.1",
3838
"react-dom": "^18.2.0",
39-
"react-hook-form": "^7.47.0",
40-
"storybook": "^7.5.2",
39+
"react-hook-form": "^7.48.2",
40+
"storybook": "^7.5.3",
4141
"zod": "^3.22.4"
4242
},
4343
"devDependencies": {
4444
"@codefixlabs/tailwindcss": "workspace:*",
4545
"@codefixlabs/tsconfig": "workspace:*",
4646
"@next/eslint-plugin-next": "^14.0.1",
4747
"@types/node": "^20.8.10",
48-
"@types/react": "^18.2.34",
48+
"@types/react": "^18.2.36",
4949
"@types/react-dom": "^18.2.14",
5050
"autoprefixer": "^10.4.16",
5151
"chromatic": "^7.6.0",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"packages/*"
77
],
88
"scripts": {
9-
"build": "turbo run build --filter='./apps/*'",
9+
"build": "turbo run build",
1010
"changeset": "changeset",
1111
"clean": "turbo run clean && rm -rf node_modules",
1212
"dev": "turbo run dev",
@@ -47,7 +47,7 @@
4747
"devDependencies": {
4848
"@changesets/cli": "^2.26.2",
4949
"@codefixlabs/tsconfig": "workspace:*",
50-
"eslint": "^8.52.0",
50+
"eslint": "^8.53.0",
5151
"lint-staged": "^15.0.2",
5252
"prettier": "^3.0.3",
5353
"prettier-plugin-tailwindcss": "^0.5.6",

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.13
4+
5+
### Patch Changes
6+
7+
- Update tsup config
8+
39
## 0.1.12
410

511
### Patch Changes

packages/hooks/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/hooks",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"license": "MIT",
55
"exports": {
66
"./package.json": "./package.json",
@@ -23,7 +23,7 @@
2323
"scripts": {
2424
"build": "tsup",
2525
"check-types": "tsc --noEmit",
26-
"clean": "rm -rf .turbo node_modules",
26+
"clean": "rm -rf .turbo dist node_modules",
2727
"dev": "tsup --watch",
2828
"lint": "eslint src/"
2929
},
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"@codefixlabs/tsconfig": "workspace:*",
42-
"@types/react": "^18.2.34",
42+
"@types/react": "^18.2.36",
4343
"eslint-config-codefixlabs": "workspace:*",
4444
"tsup": "^7.2.0",
4545
"typescript": "^5.2.2"

packages/hooks/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export default defineConfig((options: Options) => ({
99
format: ['esm', 'cjs'],
1010
minify: !options.watch,
1111
sourcemap: true,
12-
splitting: true,
12+
splitting: false,
1313
...options,
1414
}));

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.16
4+
5+
### Patch Changes
6+
7+
- Update tsup config
8+
39
## 0.1.15
410

511
### Patch Changes

packages/lib/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/lib",
3-
"version": "0.1.15",
3+
"version": "0.1.16",
44
"license": "MIT",
55
"exports": {
66
"./package.json": "./package.json",
@@ -23,7 +23,7 @@
2323
"scripts": {
2424
"build": "tsup",
2525
"check-types": "tsc --noEmit",
26-
"clean": "rm -rf .turbo node_modules",
26+
"clean": "rm -rf .turbo dist node_modules",
2727
"dev": "tsup --watch",
2828
"lint": "eslint src/"
2929
},
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@codefixlabs/tsconfig": "workspace:*",
51-
"@types/react": "^18.2.34",
51+
"@types/react": "^18.2.36",
5252
"eslint-config-codefixlabs": "workspace:*",
5353
"tsup": "^7.2.0",
5454
"typescript": "^5.2.2"

packages/lib/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export default defineConfig((options: Options) => ({
99
format: ['esm', 'cjs'],
1010
minify: !options.watch,
1111
sourcemap: true,
12-
splitting: true,
12+
splitting: false,
1313
...options,
1414
}));

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.19
4+
5+
### Patch Changes
6+
7+
- Update tsup config
8+
39
## 0.1.18
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.18",
3+
"version": "0.1.19",
44
"license": "MIT",
55
"exports": {
66
"./package.json": "./package.json",
@@ -23,7 +23,7 @@
2323
"scripts": {
2424
"build": "tsup",
2525
"check-types": "tsc --noEmit",
26-
"clean": "rm -rf .turbo node_modules",
26+
"clean": "rm -rf .turbo dist node_modules",
2727
"dev": "tsup --watch",
2828
"lint": "eslint src/"
2929
},

packages/tailwindcss/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export default defineConfig((options: Options) => ({
99
format: ['esm', 'cjs'],
1010
minify: !options.watch,
1111
sourcemap: true,
12-
splitting: true,
12+
splitting: false,
1313
...options,
1414
}));

packages/ui/CHANGELOG.md

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

3+
## 0.1.34
4+
5+
### Patch Changes
6+
7+
- Update tsup config
8+
- Updated dependencies
9+
- @codefixlabs/hooks@0.1.13
10+
- @codefixlabs/lib@0.1.16
11+
312
## 0.1.33
413

514
### Patch Changes

packages/ui/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/ui",
3-
"version": "0.1.33",
3+
"version": "0.1.34",
44
"license": "MIT",
55
"exports": {
66
"./package.json": "./package.json",
@@ -48,7 +48,7 @@
4848
"scripts": {
4949
"build": "tsup",
5050
"check-types": "tsc --noEmit",
51-
"clean": "rm -rf .turbo node_modules",
51+
"clean": "rm -rf .turbo dist node_modules",
5252
"dev": "tsup --watch",
5353
"lint": "eslint src/"
5454
},
@@ -113,16 +113,16 @@
113113
"pluralize": "^8.0.0",
114114
"react": "^18.2.0",
115115
"react-day-picker": "^8.9.1",
116-
"react-hook-form": "^7.47.0",
116+
"react-hook-form": "^7.48.2",
117117
"tailwind-merge": "^2.0.0",
118-
"use-debounce": "^9.0.4"
118+
"use-debounce": "^10.0.0"
119119
},
120120
"devDependencies": {
121121
"@codefixlabs/tailwindcss": "workspace:*",
122122
"@codefixlabs/tsconfig": "workspace:*",
123123
"@types/node": "^20.8.10",
124124
"@types/pluralize": "^0.0.32",
125-
"@types/react": "^18.2.34",
125+
"@types/react": "^18.2.36",
126126
"autoprefixer": "^10.4.16",
127127
"eslint-config-codefixlabs": "workspace:*",
128128
"postcss": "^8.4.31",

packages/ui/tsup.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ export default defineConfig((options: Options) => [
1010
format: ['esm', 'cjs'],
1111
minify: !options.watch,
1212
sourcemap: true,
13-
splitting: true,
13+
splitting: false,
1414
...options,
1515
},
1616
{
1717
clean: !options.watch,
1818
entry: ['src/styles.css'],
1919
minify: !options.watch,
2020
sourcemap: true,
21-
splitting: true,
21+
splitting: false,
2222
...options,
2323
},
2424
]);

0 commit comments

Comments
 (0)