NapCatQQ/vite.config.ts

111 lines
4.0 KiB
TypeScript
Raw Normal View History

// import PreprocessorDirectives from 'unplugin-preprocessor-directives/vite';
2024-04-14 16:09:08 +00:00
import obfuscator from 'rollup-plugin-obfuscator';
import cp from 'vite-plugin-cp';
import { UserConfig, defineConfig } from 'vite';
import { resolve } from 'path';
import { PluginOption, Plugin } from 'vite';
import nodeResolve from '@rollup/plugin-node-resolve';
import { builtinModules } from 'module';
import fs from 'node:fs';
2024-06-18 14:49:06 +00:00
import babel from 'vite-plugin-babel';
2024-07-24 02:44:55 +00:00
const external = ['silk-wasm', 'ws', 'express', 'fluent-ffmpeg', 'log4js', 'qrcode-terminal'];
2024-04-14 16:09:08 +00:00
const nodeModules = [...builtinModules, builtinModules.map(m => `node:${m}`)].flat();
// let nodeModules = ["fs", "path", "events", "buffer", "url", "crypto", "fs/promise", "fsPromise", "os", "http", "net"]
// nodeModules = [...nodeModules, ...nodeModules.map(m => `node:${m}`)]
function genCpModule(module: string) {
2024-04-23 10:38:13 +00:00
return { src: `./node_modules/${module}`, dest: `dist/node_modules/${module}`, flatten: false };
2024-04-14 16:09:08 +00:00
}
2024-05-03 13:00:17 +00:00
let startScripts: string[] | undefined = undefined;
2024-05-03 13:34:16 +00:00
if (process.env.NAPCAT_BUILDSYS == 'linux') {
if (process.env.NAPCAT_BUILDARCH == 'x64') {
2024-05-03 13:22:16 +00:00
}
2024-05-03 13:00:17 +00:00
startScripts = ['./script/napcat.sh'];
2024-05-03 13:34:16 +00:00
} else if (process.env.NAPCAT_BUILDSYS == 'win32') {
if (process.env.NAPCAT_BUILDARCH == 'x64') {
2024-05-03 13:22:16 +00:00
}
2024-08-06 17:32:48 +00:00
startScripts = ['./script/BootWay05.bat', './script/BootWay05.utf8.bat', './script/dbghelp.dll', './script/BootWay05.ps1', './script/napcat-9912.ps1', './script/napcat-9912-utf8.ps1', './script/napcat-9912.bat', './script/napcat-9912-utf8.bat'];
2024-05-03 13:22:16 +00:00
} else {
2024-08-06 17:32:48 +00:00
startScripts = ['./script/BootWay05.bat', './script/BootWay05.utf8.bat', './script/dbghelp.dll', './script/BootWay05.ps1', './script/napcat.sh', './script/napcat.ps1', './script/napcat.bat', './script/napcat-utf8.bat', './script/napcat-utf8.ps1', './script/napcat-log.ps1', './script/napcat-9912.ps1', './script/napcat-9912-utf8.ps1', './script/napcat-9912.bat', './script/napcat-9912-utf8.bat'];
2024-05-03 13:00:17 +00:00
}
2024-04-14 16:09:08 +00:00
2024-05-03 13:34:16 +00:00
const baseConfigPlugin: PluginOption[] = [
2024-05-03 13:22:16 +00:00
// PreprocessorDirectives(),
2024-06-18 14:49:06 +00:00
babel({
2024-06-18 15:23:19 +00:00
filter: /.*\.(ts|js)$/,
2024-06-18 14:49:06 +00:00
babelConfig: {
babelrc: false,
configFile: false,
presets: ["@babel/preset-typescript"],
plugins: [
//'2018-09', decoratorsBeforeExport: true
['@babel/plugin-proposal-decorators', { legacy: true }],
'@babel/plugin-proposal-class-properties',
],
},
}),
2024-05-03 13:22:16 +00:00
cp({
targets: [
// ...external.map(genCpModule),
{ src: './src/napcat.json', dest: 'dist/config/' },
2024-05-05 07:17:17 +00:00
{ src: './static/', dest: 'dist/static/', flatten: false },
2024-05-03 13:22:16 +00:00
{ src: './src/onebot11/onebot11.json', dest: 'dist/config/' },
{ src: './package.json', dest: 'dist' },
{ src: './README.md', dest: 'dist' },
{ src: './logo.png', dest: 'dist/logs' },
...(startScripts.map((startScript) => {
return { src: startScript, dest: 'dist' };
})),
]
}),
nodeResolve(),
];
2024-05-03 13:03:13 +00:00
2024-04-14 16:09:08 +00:00
let corePath = resolve(__dirname, './src/core/src');
if (!fs.existsSync(corePath)) {
corePath = resolve(__dirname, './src/core.lib/src');
}
const baseConfig = (mode: string = 'shell') => defineConfig({
2024-04-14 16:09:08 +00:00
resolve: {
conditions: ['node', 'default'],
alias: {
'@/core': corePath,
'@': resolve(__dirname, './src'),
'./lib-cov/fluent-ffmpeg': './lib/fluent-ffmpeg',
},
},
build: {
2024-05-22 09:30:40 +00:00
sourcemap: mode === 'development',
2024-04-14 16:09:08 +00:00
target: 'esnext',
2024-04-28 13:02:56 +00:00
// minify: mode === 'production' ? 'esbuild' : false,
2024-04-28 13:05:30 +00:00
// 压缩代码出现了未知问题导致无法运行,暂时不启用
2024-04-28 13:02:56 +00:00
minify: false,
2024-04-14 16:09:08 +00:00
lib: {
entry: mode === "shell" ? 'src/shell/napcat.ts' : "src/liteloader/napcat.ts",
2024-05-22 11:58:45 +00:00
formats: ['es'],
fileName: () => 'napcat.mjs',
2024-04-14 16:09:08 +00:00
},
rollupOptions: {
// external: [ /node:*/ ],
external: [...nodeModules, ...external]
},
},
});
2024-04-23 10:38:13 +00:00
export default defineConfig(({ mode }): UserConfig => {
if (mode === 'shell') {
2024-04-14 16:09:08 +00:00
return {
...baseConfig(mode),
plugins: [
...baseConfigPlugin
2024-04-14 16:09:08 +00:00
]
};
} else {
return {
...baseConfig(mode),
plugins: baseConfigPlugin,
};
}
});