mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
138 lines
3.7 KiB
TypeScript
138 lines
3.7 KiB
TypeScript
/// <reference types="vitest/config" />
|
|
|
|
import { writeFileSync } from "node:fs"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
import react from "@vitejs/plugin-react-swc"
|
|
import { resolve } from "path"
|
|
import { defineConfig, type Plugin, ViteDevServer } from "vite"
|
|
|
|
// Custom plugin to write the server port to a file
|
|
const writePortToFile = (): Plugin => {
|
|
return {
|
|
name: "write-port-to-file",
|
|
configureServer(server: ViteDevServer) {
|
|
server.httpServer?.once("listening", () => {
|
|
const address = server.httpServer?.address()
|
|
const port = typeof address === "object" && address ? address.port : null
|
|
|
|
if (port) {
|
|
const portFilePath = resolve(__dirname, ".vite-port")
|
|
writeFileSync(portFilePath, port.toString())
|
|
} else {
|
|
console.warn("[writePortToFile] Could not determine server port")
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
|
|
const isDevBuild = process.argv.includes("--dev-build")
|
|
|
|
// Valid platforms, these should the keys in platform-configs.json
|
|
const VALID_PLATFORMS = ["vscode", "standalone"]
|
|
const platform = process.env.PLATFORM || "vscode" // Default to vscode
|
|
|
|
if (!VALID_PLATFORMS.includes(platform)) {
|
|
throw new Error(`Invalid PLATFORM "${platform}". Must be one of: ${VALID_PLATFORMS.join(", ")}`)
|
|
}
|
|
console.log("Building webview for", platform)
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss(), writePortToFile()],
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
setupFiles: ["./src/setupTests.ts"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reportOnFailure: true,
|
|
reporter: ["html", "lcov", "text"],
|
|
reportsDirectory: "./coverage",
|
|
exclude: [
|
|
"**/*.{spec,test}.{js,jsx,ts,tsx,mjs,cjs}",
|
|
|
|
"**/*.d.ts",
|
|
"**/vite-env.d.ts",
|
|
"**/*.{config,setup}.{js,ts,mjs,cjs}",
|
|
|
|
"**/*.{css,scss,sass,less,styl}",
|
|
"**/*.{svg,png,jpg,jpeg,gif,ico}",
|
|
|
|
"**/*.{json,yaml,yml}",
|
|
|
|
"**/__mocks__/**",
|
|
"node_modules/**",
|
|
"build/**",
|
|
"coverage/**",
|
|
"dist/**",
|
|
"public/**",
|
|
|
|
"src/services/grpc-client.ts",
|
|
],
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "build",
|
|
reportCompressedSize: false,
|
|
// Only minify in production build
|
|
minify: !isDevBuild,
|
|
// Enable inline source maps for dev build
|
|
sourcemap: isDevBuild ? "inline" : false,
|
|
rollupOptions: {
|
|
output: {
|
|
inlineDynamicImports: true,
|
|
entryFileNames: `assets/[name].js`,
|
|
chunkFileNames: `assets/[name].js`,
|
|
assetFileNames: `assets/[name].[ext]`,
|
|
// Disable compact output for dev build
|
|
compact: !isDevBuild,
|
|
// Add generous formatting for dev build
|
|
...(isDevBuild && {
|
|
generatedCode: {
|
|
constBindings: false,
|
|
objectShorthand: false,
|
|
arrowFunctions: false,
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
chunkSizeWarningLimit: 100000,
|
|
},
|
|
server: {
|
|
port: 25463,
|
|
hmr: {
|
|
host: "localhost",
|
|
protocol: "ws",
|
|
},
|
|
cors: {
|
|
origin: "*",
|
|
methods: "*",
|
|
allowedHeaders: "*",
|
|
},
|
|
},
|
|
define: {
|
|
__PLATFORM__: JSON.stringify(platform),
|
|
process: JSON.stringify({
|
|
env: {
|
|
NODE_ENV: JSON.stringify(process?.env?.IS_DEV ? "development" : "production"),
|
|
CLINE_ENVIRONMENT: JSON.stringify(process?.env?.CLINE_ENVIRONMENT ?? "production"),
|
|
IS_DEV: JSON.stringify(process?.env?.IS_DEV),
|
|
IS_TEST: JSON.stringify(process?.env?.IS_TEST),
|
|
CI: JSON.stringify(process?.env?.CI),
|
|
// PostHog environment variables
|
|
TELEMETRY_SERVICE_API_KEY: JSON.stringify(process?.env?.TELEMETRY_SERVICE_API_KEY),
|
|
ERROR_SERVICE_API_KEY: JSON.stringify(process?.env?.ERROR_SERVICE_API_KEY),
|
|
},
|
|
}),
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": resolve(__dirname, "./src"),
|
|
"@components": resolve(__dirname, "./src/components"),
|
|
"@context": resolve(__dirname, "./src/context"),
|
|
"@shared": resolve(__dirname, "../src/shared"),
|
|
"@utils": resolve(__dirname, "./src/utils"),
|
|
},
|
|
},
|
|
})
|