🚧 Use TS project references

This commit is contained in:
Baptiste Arnaud
2024-08-28 18:09:35 +02:00
parent 0c7d2afd51
commit fdd6cc6fee
627 changed files with 3043 additions and 1696 deletions

View File

@@ -3,8 +3,6 @@
"version": "0.3.11",
"description": "Javascript library to display typebots on your website",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup --watch --config rollup.config.js",
"build": "rollup --config rollup.config.js",
@@ -36,7 +34,6 @@
"@typebot.io/lib": "workspace:*",
"@typebot.io/schemas": "workspace:*",
"@typebot.io/theme": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@types/dompurify": "3.0.3",
"autoprefixer": "10.4.14",
"babel-preset-solid": "1.7.7",
@@ -49,7 +46,6 @@
"rollup": "3.26.2",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript-paths": "1.4.0",
"tailwindcss": "3.3.3",
"typescript": "5.4.5"
"tailwindcss": "3.3.3"
}
}

View File

@@ -1,20 +1,34 @@
{
"extends": "@typebot.io/tsconfig/base.json",
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"],
"extends": "../../tsconfig/base.json",
"include": [
"src/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
"@/*": [
"src/*"
]
},
"jsx": "preserve",
"jsxImportSource": "solid-js",
"module": "ESNext",
"target": "ESNext",
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"noEmit": false,
"emitDeclarationOnly": true
}
"outDir": "dist"
},
"references": [
{
"path": "../../bot-engine"
},
{
"path": "../../env"
},
{
"path": "../../lib"
},
{
"path": "../../schemas"
},
{
"path": "../../theme"
}
]
}

View File

@@ -2,8 +2,6 @@
"name": "@typebot.io/nextjs",
"version": "0.3.11",
"description": "Convenient library to display typebots on your Next.js website",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "rollup --watch --config rollup.config.js",
@@ -20,23 +18,21 @@
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.2",
"@typebot.io/js": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/react": "workspace:*",
"@typebot.io/schemas": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react": "18.3.4",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
"react": "18.2.0",
"rollup": "3.26.2",
"rollup-plugin-typescript-paths": "1.4.0",
"tslib": "2.6.0",
"tsx": "4.6.2",
"typescript": "5.4.5",
"@rollup/plugin-typescript": "11.1.2"
"tsx": "4.6.2"
},
"peerDependencies": {
"next": "12.x || 13.x || 14.x",

View File

@@ -1,15 +1,28 @@
{
"extends": "@typebot.io/tsconfig/react-library.json",
"extends": "../../tsconfig/react.json",
"include": ["src/**/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"noEmit": false,
"emitDeclarationOnly": true
}
"outDir": "dist"
},
"references": [
{
"path": "../../lib"
},
{
"path": "../../prisma"
},
{
"path": "../../schemas"
},
{
"path": "../js"
},
{
"path": "../react"
}
]
}

View File

@@ -2,8 +2,6 @@
"name": "@typebot.io/react",
"version": "0.3.11",
"description": "Convenient library to display typebots on your React app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"stories:dev": "ladle serve -p 3006",
@@ -25,22 +23,20 @@
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.2",
"@typebot.io/js": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/schemas": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react": "18.3.4",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
"react": "18.2.0",
"rollup": "3.26.2",
"rollup-plugin-typescript-paths": "1.4.0",
"tslib": "2.6.0",
"tsx": "4.6.2",
"typescript": "5.4.5",
"@rollup/plugin-typescript": "11.1.2"
"tsx": "4.6.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"

View File

@@ -1,4 +1,4 @@
import React, { useCallback, useEffect, useRef } from 'react'
import { useCallback, useEffect, useRef } from 'react'
import type { BubbleProps } from '@typebot.io/js'
import '@typebot.io/js/dist/web'

View File

@@ -1,4 +1,4 @@
import React, { useCallback, useEffect, useRef } from 'react'
import { useCallback, useEffect, useRef } from 'react'
import type { PopupProps } from '@typebot.io/js'
import '@typebot.io/js/dist/web'

View File

@@ -1,4 +1,4 @@
import React, { useEffect, useRef } from 'react'
import { useEffect, useRef } from 'react'
import type { BotProps } from '@typebot.io/js'
import '@typebot.io/js/dist/web'

View File

@@ -1,15 +1,25 @@
{
"extends": "@typebot.io/tsconfig/react-library.json",
"extends": "../../tsconfig/react.json",
"include": ["src/**/*"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"noEmit": false,
"emitDeclarationOnly": true
}
"outDir": "dist"
},
"references": [
{
"path": "../../lib"
},
{
"path": "../../prisma"
},
{
"path": "../../schemas"
},
{
"path": "../js"
}
]
}

View File

@@ -1,7 +1,6 @@
{
"name": "@typebot.io/wordpress",
"version": "4.0.0",
"main": "index.js",
"repository": "https://github.com/baptisteArno/typebot.io",
"author": "baptisteArno",
"license": "AGPL-3.0-or-later",