We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e83865 commit ecd15e9Copy full SHA for ecd15e9
src/client/index.js
@@ -0,0 +1 @@
1
+export * from '../y-socket-io/client.js'
src/y-socket-io/index.js
@@ -1,3 +1,2 @@
-export * from './client.js'
2
export * from './user.js'
3
export { YSocketIO } from './y-socket-io.js'
tsup.config.ts
@@ -1,7 +1,10 @@
import { defineConfig } from 'tsup'
export default defineConfig({
4
- entryPoints: ['src/index.js'],
+ entry: [
5
+ 'src/index.js',
6
+ 'src/client/index.js',
7
+ ],
8
format: ['cjs', 'esm'],
9
dts: true,
10
outDir: 'dist',
0 commit comments