| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- const esbuild = require("esbuild")
- const fs = require("fs")
- const path = require("path")
- const production = process.argv.includes("--production")
- const watch = process.argv.includes("--watch")
- /**
- * @type {import('esbuild').Plugin}
- */
- const esbuildProblemMatcherPlugin = {
- name: "esbuild-problem-matcher",
- setup(build) {
- build.onStart(() => {
- console.log("[watch] build started")
- })
- build.onEnd((result) => {
- result.errors.forEach(({ text, location }) => {
- console.error(`✘ [ERROR] ${text}`)
- console.error(` ${location.file}:${location.line}:${location.column}:`)
- })
- console.log("[watch] build finished")
- })
- },
- }
- const copyWasmFiles = {
- name: "copy-wasm-files",
- setup(build) {
- build.onEnd(() => {
- // tree sitter
- const sourceDir = path.join(__dirname, "node_modules", "web-tree-sitter")
- const targetDir = path.join(__dirname, "dist")
- // Copy tree-sitter.wasm
- fs.copyFileSync(path.join(sourceDir, "tree-sitter.wasm"), path.join(targetDir, "tree-sitter.wasm"))
- // Copy language-specific WASM files
- const languageWasmDir = path.join(__dirname, "node_modules", "tree-sitter-wasms", "out")
- const languages = [
- "typescript",
- "tsx",
- "python",
- "rust",
- "javascript",
- "go",
- "cpp",
- "c",
- "c_sharp",
- "ruby",
- "java",
- "php",
- "swift",
- "kotlin",
- ]
- languages.forEach((lang) => {
- const filename = `tree-sitter-${lang}.wasm`
- fs.copyFileSync(path.join(languageWasmDir, filename), path.join(targetDir, filename))
- })
- })
- },
- }
- // Simple function to copy locale files
- function copyLocaleFiles() {
- const srcDir = path.join(__dirname, "src", "i18n", "locales")
- const destDir = path.join(__dirname, "dist", "i18n", "locales")
- const outDir = path.join(__dirname, "out", "i18n", "locales")
- // Ensure source directory exists before proceeding
- if (!fs.existsSync(srcDir)) {
- console.warn(`Source locales directory does not exist: ${srcDir}`)
- return // Exit early if source directory doesn't exist
- }
- // Create destination directories
- fs.mkdirSync(destDir, { recursive: true })
- try {
- fs.mkdirSync(outDir, { recursive: true })
- } catch (e) {}
- // Function to copy directory recursively
- function copyDir(src, dest) {
- const entries = fs.readdirSync(src, { withFileTypes: true })
- for (const entry of entries) {
- const srcPath = path.join(src, entry.name)
- const destPath = path.join(dest, entry.name)
- if (entry.isDirectory()) {
- // Create directory and copy contents
- fs.mkdirSync(destPath, { recursive: true })
- copyDir(srcPath, destPath)
- } else {
- // Copy the file
- fs.copyFileSync(srcPath, destPath)
- }
- }
- }
- // Copy files to dist directory
- copyDir(srcDir, destDir)
- console.log("Copied locale files to dist/i18n/locales")
- // Copy to out directory for debugging
- try {
- copyDir(srcDir, outDir)
- console.log("Copied locale files to out/i18n/locales")
- } catch (e) {
- console.warn("Could not copy to out directory:", e.message)
- }
- }
- // Set up file watcher if in watch mode
- function setupLocaleWatcher() {
- if (!watch) return
- const localesDir = path.join(__dirname, "src", "i18n", "locales")
- // Ensure the locales directory exists before setting up watcher
- if (!fs.existsSync(localesDir)) {
- console.warn(`Cannot set up watcher: Source locales directory does not exist: ${localesDir}`)
- return
- }
- console.log(`Setting up watcher for locale files in ${localesDir}`)
- // Use a debounce mechanism
- let debounceTimer = null
- const debouncedCopy = () => {
- if (debounceTimer) clearTimeout(debounceTimer)
- debounceTimer = setTimeout(() => {
- console.log("Locale files changed, copying...")
- copyLocaleFiles()
- }, 300) // Wait 300ms after last change before copying
- }
- // Watch the locales directory
- try {
- fs.watch(localesDir, { recursive: true }, (eventType, filename) => {
- if (filename && filename.endsWith(".json")) {
- console.log(`Locale file ${filename} changed, triggering copy...`)
- debouncedCopy()
- }
- })
- console.log("Watcher for locale files is set up")
- } catch (error) {
- console.error(`Error setting up watcher for ${localesDir}:`, error.message)
- }
- }
- const copyLocalesFiles = {
- name: "copy-locales-files",
- setup(build) {
- build.onEnd(() => {
- copyLocaleFiles()
- })
- },
- }
- const extensionConfig = {
- bundle: true,
- minify: production,
- sourcemap: !production,
- logLevel: "silent",
- plugins: [
- copyWasmFiles,
- copyLocalesFiles,
- /* add to the end of plugins array */
- esbuildProblemMatcherPlugin,
- {
- name: "alias-plugin",
- setup(build) {
- build.onResolve({ filter: /^pkce-challenge$/ }, (args) => {
- return { path: require.resolve("pkce-challenge/dist/index.browser.js") }
- })
- },
- },
- ],
- entryPoints: ["src/extension.ts"],
- format: "cjs",
- sourcesContent: false,
- platform: "node",
- outfile: "dist/extension.js",
- external: ["vscode"],
- }
- async function main() {
- const extensionCtx = await esbuild.context(extensionConfig)
- if (watch) {
- // Start the esbuild watcher
- await extensionCtx.watch()
- // Copy and watch locale files
- console.log("Copying locale files initially...")
- copyLocaleFiles()
- // Set up the watcher for locale files
- setupLocaleWatcher()
- } else {
- await extensionCtx.rebuild()
- await extensionCtx.dispose()
- }
- }
- main().catch((e) => {
- console.error(e)
- process.exit(1)
- })
|