mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-06-16 16:01:52 +03:00
38 lines
1015 B
JSON
38 lines
1015 B
JSON
{
|
|
"$schema": "https://v2-9-17.turborepo.dev/schema.json",
|
|
"globalDependencies": ["package-lock.json"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": [
|
|
"src/**",
|
|
"!src/**/__tests__/**",
|
|
"!src/**/__mocks__/**",
|
|
"!src/**/*.test.*",
|
|
"!src/**/*.spec.*",
|
|
"scripts/**",
|
|
"rollup.config.js",
|
|
"server-rollup.config.js",
|
|
"tsdown.config.mjs",
|
|
"tsconfig.json",
|
|
"tsconfig.build.json",
|
|
"vite.config.ts",
|
|
"index.html",
|
|
"postcss.config.*",
|
|
"tailwind.config.*",
|
|
"package.json"
|
|
],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"@librechat/data-schemas#build": {
|
|
"dependsOn": ["^build", "librechat-data-provider#build"]
|
|
},
|
|
"@librechat/api#build": {
|
|
"dependsOn": ["^build", "librechat-data-provider#build", "@librechat/data-schemas#build"]
|
|
},
|
|
"@librechat/client#build": {
|
|
"dependsOn": ["^build", "librechat-data-provider#build"]
|
|
}
|
|
}
|
|
}
|