mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
123 lines
3.3 KiB
TypeScript
123 lines
3.3 KiB
TypeScript
import path, { resolve } from "path"
|
|
import fs from "fs"
|
|
import { execSync } from "child_process"
|
|
|
|
import { defineConfig, type PluginOption, type Plugin } from "vite"
|
|
import react from "@vitejs/plugin-react"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
|
|
function getGitSha() {
|
|
let gitSha: string | undefined = undefined
|
|
|
|
try {
|
|
gitSha = execSync("git rev-parse HEAD").toString().trim()
|
|
} catch (_error) {
|
|
// Do nothing.
|
|
}
|
|
|
|
return gitSha
|
|
}
|
|
|
|
const wasmPlugin = (): Plugin => ({
|
|
name: "wasm",
|
|
async load(id) {
|
|
if (id.endsWith(".wasm")) {
|
|
const wasmBinary = await import(id)
|
|
|
|
return `
|
|
const wasmModule = new WebAssembly.Module(${wasmBinary.default});
|
|
export default wasmModule;
|
|
`
|
|
}
|
|
},
|
|
})
|
|
|
|
const persistPortPlugin = (): Plugin => ({
|
|
name: "write-port-to-file",
|
|
configureServer(viteDevServer) {
|
|
viteDevServer?.httpServer?.once("listening", () => {
|
|
const address = viteDevServer?.httpServer?.address()
|
|
const port = address && typeof address === "object" ? address.port : null
|
|
|
|
if (port) {
|
|
fs.writeFileSync(resolve(__dirname, "..", ".vite-port"), port.toString())
|
|
console.log(`[Vite Plugin] Server started on port ${port}`)
|
|
} else {
|
|
console.warn("[Vite Plugin] Could not determine server port")
|
|
}
|
|
})
|
|
},
|
|
})
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
let outDir = "../src/webview-ui/build"
|
|
|
|
const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, "..", "src", "package.json"), "utf8"))
|
|
const gitSha = getGitSha()
|
|
|
|
const define: Record<string, any> = {
|
|
"process.platform": JSON.stringify(process.platform),
|
|
"process.env.VSCODE_TEXTMATE_DEBUG": JSON.stringify(process.env.VSCODE_TEXTMATE_DEBUG),
|
|
"process.env.PKG_NAME": JSON.stringify(pkg.name),
|
|
"process.env.PKG_VERSION": JSON.stringify(pkg.version),
|
|
"process.env.PKG_OUTPUT_CHANNEL": JSON.stringify("Roo-Code"),
|
|
...(gitSha ? { "process.env.PKG_SHA": JSON.stringify(gitSha) } : {}),
|
|
}
|
|
|
|
// TODO: We can use `@roo-code/build` to generate `define` once the
|
|
// monorepo is deployed.
|
|
if (mode === "nightly") {
|
|
outDir = "../apps/vscode-nightly/build/webview-ui/build"
|
|
|
|
const nightlyPkg = JSON.parse(
|
|
fs.readFileSync(path.join(__dirname, "..", "apps", "vscode-nightly", "package.nightly.json"), "utf8"),
|
|
)
|
|
|
|
define["process.env.PKG_NAME"] = JSON.stringify(nightlyPkg.name)
|
|
define["process.env.PKG_VERSION"] = JSON.stringify(nightlyPkg.version)
|
|
define["process.env.PKG_OUTPUT_CHANNEL"] = JSON.stringify("Roo-Code-Nightly")
|
|
}
|
|
|
|
const plugins: PluginOption[] = [react(), tailwindcss(), persistPortPlugin(), wasmPlugin()]
|
|
|
|
return {
|
|
plugins,
|
|
resolve: {
|
|
alias: {
|
|
"@": resolve(__dirname, "./src"),
|
|
"@src": resolve(__dirname, "./src"),
|
|
"@roo": resolve(__dirname, "../src"),
|
|
},
|
|
},
|
|
build: {
|
|
outDir,
|
|
emptyOutDir: true,
|
|
reportCompressedSize: false,
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: `assets/[name].js`,
|
|
chunkFileNames: `assets/[name].js`,
|
|
assetFileNames: `assets/[name].[ext]`,
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
hmr: {
|
|
host: "localhost",
|
|
protocol: "ws",
|
|
},
|
|
cors: {
|
|
origin: "*",
|
|
methods: "*",
|
|
allowedHeaders: "*",
|
|
},
|
|
},
|
|
define,
|
|
optimizeDeps: {
|
|
exclude: ["@vscode/codicons", "vscode-oniguruma", "shiki"],
|
|
},
|
|
assetsInclude: ["**/*.wasm", "**/*.wav"],
|
|
}
|
|
})
|