mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 01:23:53 +00:00
79 lines
2.0 KiB
JavaScript
79 lines
2.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { createRequire } from 'node:module';
|
|
import { writeFileSync, rmSync } from 'node:fs';
|
|
|
|
let esbuild;
|
|
try {
|
|
esbuild = (await import('esbuild')).default;
|
|
} catch (_error) {
|
|
console.warn('esbuild not available, skipping bundle step');
|
|
process.exit(0);
|
|
}
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const require = createRequire(import.meta.url);
|
|
const pkg = require(path.resolve(__dirname, 'package.json'));
|
|
|
|
// Clean dist directory (cross-platform)
|
|
rmSync(path.resolve(__dirname, 'dist'), { recursive: true, force: true });
|
|
|
|
const external = [
|
|
'@lydell/node-pty',
|
|
'node-pty',
|
|
'@lydell/node-pty-darwin-arm64',
|
|
'@lydell/node-pty-darwin-x64',
|
|
'@lydell/node-pty-linux-x64',
|
|
'@lydell/node-pty-win32-arm64',
|
|
'@lydell/node-pty-win32-x64',
|
|
'tiktoken',
|
|
];
|
|
|
|
esbuild
|
|
.build({
|
|
entryPoints: ['packages/cli/index.ts'],
|
|
bundle: true,
|
|
outfile: 'dist/cli.js',
|
|
platform: 'node',
|
|
format: 'esm',
|
|
target: 'node20',
|
|
external,
|
|
packages: 'bundle',
|
|
inject: [path.resolve(__dirname, 'scripts/esbuild-shims.js')],
|
|
banner: {
|
|
js: `// Force strict mode and setup for ESM
|
|
"use strict";`,
|
|
},
|
|
alias: {
|
|
'is-in-ci': path.resolve(
|
|
__dirname,
|
|
'packages/cli/src/patches/is-in-ci.ts',
|
|
),
|
|
},
|
|
define: {
|
|
'process.env.CLI_VERSION': JSON.stringify(pkg.version),
|
|
// Make global available for compatibility
|
|
global: 'globalThis',
|
|
},
|
|
loader: { '.node': 'file' },
|
|
metafile: true,
|
|
write: true,
|
|
keepNames: true,
|
|
})
|
|
.then(({ metafile }) => {
|
|
if (process.env.DEV === 'true') {
|
|
writeFileSync('./dist/esbuild.json', JSON.stringify(metafile, null, 2));
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
console.error('esbuild build failed:', error);
|
|
process.exitCode = 1;
|
|
});
|