Skip to content

Commit

Permalink
feat: remove use client
Browse files Browse the repository at this point in the history
  • Loading branch information
thevuong committed Oct 24, 2023
1 parent e8439fe commit 695d152
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions packages/hooks/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ export default defineConfig((options: Options) => ({
clean: !options.watch,
dts: true,
entry: ['src/**/*.tsx'],
esbuildOptions: (option) => {
option.banner = {
js: `"use client";`,
};
},
external: ['react'],
format: ['esm', 'cjs'],
minify: true,
Expand Down
5 changes: 0 additions & 5 deletions packages/lib/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ export default defineConfig((options: Options) => ({
clean: !options.watch,
dts: true,
entry: ['src/**/*.ts'],
esbuildOptions: (option) => {
option.banner = {
js: `"use client";`,
};
},
external: ['react'],
format: ['esm', 'cjs'],
minify: true,
Expand Down
5 changes: 0 additions & 5 deletions packages/tailwindcss/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ export default defineConfig((options: Options) => ({
clean: !options.watch,
dts: true,
entry: ['src/**/*.ts'],
esbuildOptions: (option) => {
option.banner = {
js: `"use client";`,
};
},
external: ['react'],
format: ['esm', 'cjs'],
minify: true,
Expand Down

0 comments on commit 695d152

Please sign in to comment.