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');
|
2025-09-04 16:26:29 +08:00
|
|
|
const babel = require('@rollup/plugin-babel');
|
2025-06-09 14:51:26 +08:00
|
|
|
const dts = require('rollup-plugin-dts').default;
|
|
|
|
|
const { readFileSync } = require('fs');
|
|
|
|
|
|
|
|
|
|
const pkg = JSON.parse(readFileSync('./package.json', 'utf8'));
|
|
|
|
|
|
|
|
|
|
const banner = `/**
|
|
|
|
|
* @esengine/ecs-framework v${pkg.version}
|
2025-06-12 09:47:25 +08:00
|
|
|
* 高性能ECS框架 - 适用于Cocos Creator和Laya等JavaScript游戏引擎
|
2025-06-09 14:51:26 +08:00
|
|
|
*
|
|
|
|
|
* @author ${pkg.author}
|
|
|
|
|
* @license ${pkg.license}
|
|
|
|
|
*/`;
|
|
|
|
|
|
|
|
|
|
const external = [];
|
|
|
|
|
|
2025-10-28 14:08:34 +08:00
|
|
|
const modernPlugins = [
|
|
|
|
|
resolve({
|
|
|
|
|
browser: true,
|
|
|
|
|
preferBuiltins: false
|
|
|
|
|
}),
|
|
|
|
|
commonjs({
|
|
|
|
|
include: /node_modules/
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const legacyPlugins = [
|
2025-06-09 14:51:26 +08:00
|
|
|
resolve({
|
|
|
|
|
browser: true,
|
|
|
|
|
preferBuiltins: false
|
|
|
|
|
}),
|
|
|
|
|
commonjs({
|
|
|
|
|
include: /node_modules/
|
2025-09-04 16:26:29 +08:00
|
|
|
}),
|
|
|
|
|
babel({
|
|
|
|
|
babelHelpers: 'bundled',
|
|
|
|
|
exclude: 'node_modules/**',
|
|
|
|
|
extensions: ['.js', '.ts']
|
2025-06-09 14:51:26 +08:00
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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: [
|
2025-10-28 14:08:34 +08:00
|
|
|
...modernPlugins,
|
2025-06-09 14:51:26 +08:00
|
|
|
terser({
|
|
|
|
|
format: {
|
|
|
|
|
comments: /^!/
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
external,
|
2025-10-11 10:36:59 +08:00
|
|
|
onwarn(warning, warn) {
|
|
|
|
|
// 忽略 msgpack-lite 的循环依赖警告
|
|
|
|
|
if (warning.code === 'CIRCULAR_DEPENDENCY' && warning.ids && warning.ids.some(id => id.includes('msgpack-lite'))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
warn(warning);
|
|
|
|
|
},
|
2025-06-09 14:51:26 +08:00
|
|
|
treeshake: {
|
2025-12-03 16:20:59 +08:00
|
|
|
moduleSideEffects: (id) => id.includes('reflect-metadata'),
|
2025-06-09 14:51:26 +08:00
|
|
|
propertyReadSideEffects: false,
|
|
|
|
|
unknownGlobalSideEffects: false
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-10-28 14:08:34 +08:00
|
|
|
|
2025-07-07 11:49:36 +08:00
|
|
|
// CommonJS构建
|
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: [
|
2025-10-28 14:08:34 +08:00
|
|
|
...modernPlugins,
|
2025-06-09 14:51:26 +08:00
|
|
|
terser({
|
|
|
|
|
format: {
|
|
|
|
|
comments: /^!/
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
external,
|
2025-10-11 10:36:59 +08:00
|
|
|
onwarn(warning, warn) {
|
|
|
|
|
if (warning.code === 'CIRCULAR_DEPENDENCY' && warning.ids && warning.ids.some(id => id.includes('msgpack-lite'))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
warn(warning);
|
|
|
|
|
},
|
2025-06-09 14:51:26 +08:00
|
|
|
treeshake: {
|
2025-12-03 16:20:59 +08:00
|
|
|
moduleSideEffects: (id) => id.includes('reflect-metadata')
|
2025-06-09 14:51:26 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-08-11 10:25:28 +08:00
|
|
|
|
2025-10-28 14:08:34 +08:00
|
|
|
// UMD构建
|
2025-08-11 10:25:28 +08:00
|
|
|
{
|
|
|
|
|
input: 'bin/index.js',
|
|
|
|
|
output: {
|
|
|
|
|
file: 'dist/index.umd.js',
|
|
|
|
|
format: 'umd',
|
|
|
|
|
name: 'ECS',
|
|
|
|
|
banner,
|
|
|
|
|
sourcemap: true,
|
|
|
|
|
exports: 'named'
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
2025-10-28 14:08:34 +08:00
|
|
|
...legacyPlugins,
|
2025-08-11 10:25:28 +08:00
|
|
|
terser({
|
|
|
|
|
format: {
|
|
|
|
|
comments: /^!/
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
external: [],
|
2025-10-11 10:36:59 +08:00
|
|
|
onwarn(warning, warn) {
|
|
|
|
|
if (warning.code === 'CIRCULAR_DEPENDENCY' && warning.ids && warning.ids.some(id => id.includes('msgpack-lite'))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
warn(warning);
|
|
|
|
|
},
|
2025-08-11 10:25:28 +08:00
|
|
|
treeshake: {
|
2025-12-03 16:20:59 +08:00
|
|
|
moduleSideEffects: (id) => id.includes('reflect-metadata')
|
2025-08-11 10:25:28 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-09-04 16:26:29 +08:00
|
|
|
|
|
|
|
|
// ES5兼容构建 - 适用于只支持ES5语法的JavaScript环境
|
|
|
|
|
{
|
|
|
|
|
input: 'bin/index.js',
|
|
|
|
|
output: {
|
|
|
|
|
file: 'dist/index.es5.js',
|
|
|
|
|
format: 'cjs',
|
|
|
|
|
banner: banner + '\n// ES5 Compatible Build for legacy JavaScript environments',
|
|
|
|
|
sourcemap: true,
|
|
|
|
|
exports: 'named'
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
resolve({
|
|
|
|
|
browser: true,
|
|
|
|
|
preferBuiltins: false
|
|
|
|
|
}),
|
|
|
|
|
commonjs({
|
|
|
|
|
include: /node_modules/
|
|
|
|
|
}),
|
|
|
|
|
babel({
|
|
|
|
|
babelHelpers: 'bundled',
|
|
|
|
|
exclude: 'node_modules/**',
|
|
|
|
|
extensions: ['.js', '.ts'],
|
|
|
|
|
presets: [
|
|
|
|
|
['@babel/preset-env', {
|
|
|
|
|
targets: {
|
|
|
|
|
browsers: ['ie >= 9', 'chrome >= 30', 'firefox >= 30', 'safari >= 8']
|
|
|
|
|
},
|
|
|
|
|
modules: false,
|
|
|
|
|
loose: true,
|
|
|
|
|
forceAllTransforms: true
|
|
|
|
|
}]
|
|
|
|
|
],
|
|
|
|
|
plugins: [
|
|
|
|
|
'@babel/plugin-transform-optional-chaining',
|
|
|
|
|
'@babel/plugin-transform-nullish-coalescing-operator'
|
|
|
|
|
]
|
|
|
|
|
}),
|
|
|
|
|
terser({
|
|
|
|
|
ecma: 5,
|
|
|
|
|
format: {
|
|
|
|
|
comments: /^!/
|
|
|
|
|
},
|
|
|
|
|
compress: {
|
|
|
|
|
drop_console: false,
|
|
|
|
|
drop_debugger: false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
external: [],
|
2025-10-11 10:36:59 +08:00
|
|
|
onwarn(warning, warn) {
|
|
|
|
|
if (warning.code === 'CIRCULAR_DEPENDENCY' && warning.ids && warning.ids.some(id => id.includes('msgpack-lite'))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
warn(warning);
|
|
|
|
|
},
|
2025-09-04 16:26:29 +08:00
|
|
|
treeshake: {
|
2025-12-03 16:20:59 +08:00
|
|
|
moduleSideEffects: (id) => id.includes('reflect-metadata')
|
2025-09-04 16:26:29 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-12-03 16:20:59 +08:00
|
|
|
|
2025-06-09 14:51:26 +08:00
|
|
|
// 类型定义构建
|
|
|
|
|
{
|
|
|
|
|
input: 'bin/index.d.ts',
|
|
|
|
|
output: {
|
|
|
|
|
file: 'dist/index.d.ts',
|
|
|
|
|
format: 'es',
|
|
|
|
|
banner: `/**
|
|
|
|
|
* @esengine/ecs-framework v${pkg.version}
|
|
|
|
|
* TypeScript definitions
|
|
|
|
|
*/`
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
dts({
|
|
|
|
|
respectExternal: true
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
external: []
|
|
|
|
|
}
|
|
|
|
|
];
|