2025-06-09 14:51:26 +08:00
|
|
|
|
const resolve = require('@rollup/plugin-node-resolve');
|
|
|
|
|
|
const commonjs = require('@rollup/plugin-commonjs');
|
|
|
|
|
|
const terser = require('@rollup/plugin-terser');
|
|
|
|
|
|
const dts = require('rollup-plugin-dts').default;
|
|
|
|
|
|
const { readFileSync } = require('fs');
|
|
|
|
|
|
|
|
|
|
|
|
const pkg = JSON.parse(readFileSync('./package.json', 'utf8'));
|
|
|
|
|
|
|
|
|
|
|
|
const banner = `/**
|
2025-08-13 13:07:40 +08:00
|
|
|
|
* @esengine/network-server v${pkg.version}
|
|
|
|
|
|
* ECS网络层服务端实现
|
2025-06-09 14:51:26 +08:00
|
|
|
|
*
|
|
|
|
|
|
* @author ${pkg.author}
|
|
|
|
|
|
* @license ${pkg.license}
|
|
|
|
|
|
*/`;
|
|
|
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
|
// 外部依赖,不打包进bundle (Node.js环境,保持依赖外部化)
|
2025-08-07 13:29:12 +08:00
|
|
|
|
const external = [
|
|
|
|
|
|
'@esengine/ecs-framework',
|
2025-08-13 13:07:40 +08:00
|
|
|
|
'@esengine/network-shared',
|
|
|
|
|
|
'ws',
|
|
|
|
|
|
'reflect-metadata',
|
|
|
|
|
|
'http',
|
|
|
|
|
|
'https',
|
|
|
|
|
|
'crypto',
|
|
|
|
|
|
'events',
|
|
|
|
|
|
'stream',
|
|
|
|
|
|
'util',
|
|
|
|
|
|
'fs',
|
|
|
|
|
|
'path'
|
2025-08-07 13:29:12 +08:00
|
|
|
|
];
|
2025-06-09 14:51:26 +08:00
|
|
|
|
|
|
|
|
|
|
const commonPlugins = [
|
|
|
|
|
|
resolve({
|
2025-08-13 13:07:40 +08:00
|
|
|
|
preferBuiltins: true,
|
|
|
|
|
|
browser: false
|
2025-06-09 14:51:26 +08:00
|
|
|
|
}),
|
|
|
|
|
|
commonjs({
|
|
|
|
|
|
include: /node_modules/
|
|
|
|
|
|
})
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = [
|
|
|
|
|
|
// ES模块构建
|
|
|
|
|
|
{
|
|
|
|
|
|
input: 'bin/index.js',
|
|
|
|
|
|
output: {
|
2025-07-07 11:49:36 +08:00
|
|
|
|
file: 'dist/index.mjs',
|
2025-06-09 14:51:26 +08:00
|
|
|
|
format: 'es',
|
|
|
|
|
|
banner,
|
|
|
|
|
|
sourcemap: true,
|
|
|
|
|
|
exports: 'named'
|
|
|
|
|
|
},
|
|
|
|
|
|
plugins: [
|
|
|
|
|
|
...commonPlugins,
|
|
|
|
|
|
terser({
|
|
|
|
|
|
format: {
|
|
|
|
|
|
comments: /^!/
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
],
|
|
|
|
|
|
external,
|
|
|
|
|
|
treeshake: {
|
|
|
|
|
|
moduleSideEffects: false,
|
|
|
|
|
|
propertyReadSideEffects: false,
|
|
|
|
|
|
unknownGlobalSideEffects: false
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-08-13 13:07:40 +08:00
|
|
|
|
// CommonJS构建 (Node.js主要格式)
|
2025-06-09 14:51:26 +08:00
|
|
|
|
{
|
|
|
|
|
|
input: 'bin/index.js',
|
|
|
|
|
|
output: {
|
2025-07-07 11:49:36 +08:00
|
|
|
|
file: 'dist/index.cjs',
|
|
|
|
|
|
format: 'cjs',
|
2025-06-09 14:51:26 +08:00
|
|
|
|
banner,
|
|
|
|
|
|
sourcemap: true,
|
|
|
|
|
|
exports: 'named'
|
|
|
|
|
|
},
|
|
|
|
|
|
plugins: [
|
|
|
|
|
|
...commonPlugins,
|
|
|
|
|
|
terser({
|
|
|
|
|
|
format: {
|
|
|
|
|
|
comments: /^!/
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
],
|
|
|
|
|
|
external,
|
|
|
|
|
|
treeshake: {
|
|
|
|
|
|
moduleSideEffects: false
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 类型定义构建
|
|
|
|
|
|
{
|
|
|
|
|
|
input: 'bin/index.d.ts',
|
|
|
|
|
|
output: {
|
|
|
|
|
|
file: 'dist/index.d.ts',
|
|
|
|
|
|
format: 'es',
|
|
|
|
|
|
banner: `/**
|
2025-08-13 13:07:40 +08:00
|
|
|
|
* @esengine/network-server v${pkg.version}
|
2025-06-09 14:51:26 +08:00
|
|
|
|
* TypeScript definitions
|
|
|
|
|
|
*/`
|
|
|
|
|
|
},
|
|
|
|
|
|
plugins: [
|
|
|
|
|
|
dts({
|
|
|
|
|
|
respectExternal: true
|
|
|
|
|
|
})
|
|
|
|
|
|
],
|
2025-08-12 09:39:07 +08:00
|
|
|
|
external
|
2025-06-09 14:51:26 +08:00
|
|
|
|
}
|
2025-08-07 13:29:12 +08:00
|
|
|
|
];
|