| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- 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"],
- }
- })
|