amis2/packages/amis/rollup.config.js

175 lines
3.9 KiB
JavaScript
Raw Normal View History

2022-06-01 15:06:00 +08:00
// rollup.config.js
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import license from 'rollup-plugin-license';
import autoExternal from 'rollup-plugin-auto-external';
import {
name,
version,
author,
main,
module,
dependencies
} from './package.json';
import path from 'path';
import svgr from '@svgr/rollup';
const settings = {
globals: {}
};
const external = id => {
const result = new RegExp(
2022-06-01 15:06:00 +08:00
`^(?:${Object.keys(dependencies)
.concat([
'monaco-editor',
'react',
'react-dom',
'rc-input-number',
'@rc-component/mini-decimal',
'@babel/runtime'
])
2022-06-01 15:06:00 +08:00
.map(value =>
value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d')
)
.join('|')})`
).test(id);
if (!result && ~id.indexOf('node_modules')) {
console.log(id);
}
return result;
};
2022-06-01 15:06:00 +08:00
const input = './src/index.tsx';
/** 获取子包编译后的入口路径,需要使用相对路径 */
const getCompiledEntryPath = (repo, format) =>
path.join(
'..',
repo,
repo === 'amis-formula' || format === 'cjs' ? 'lib' : 'esm',
'index.js'
);
2022-06-01 15:06:00 +08:00
export default [
{
input,
output: [
{
...settings,
dir: path.dirname(main),
format: 'cjs',
exports: 'named',
preserveModulesRoot: './src',
preserveModules: true // Keep directory structure and files
}
],
external,
plugins: getPlugins('cjs')
2022-06-16 21:07:14 +08:00
},
2022-06-01 15:06:00 +08:00
2022-06-16 21:07:14 +08:00
{
input,
2022-06-01 15:06:00 +08:00
2022-06-16 21:07:14 +08:00
output: [
{
...settings,
dir: path.dirname(module),
format: 'esm',
exports: 'named',
preserveModulesRoot: './src',
preserveModules: true // Keep directory structure and files
}
],
external,
plugins: getPlugins('esm')
}
2022-06-01 15:06:00 +08:00
];
function transpileDynamicImportForCJS(options) {
return {
name: 'transpile-dynamic-import-for-cjs',
renderDynamicImport({format, targetModuleId}) {
if (format !== 'cjs') {
return null;
}
return {
2022-06-06 11:12:38 +08:00
left: 'Promise.resolve().then(function() {return new Promise(function(fullfill) {require([',
2022-06-13 14:38:39 +08:00
right: '], function(mod) {fullfill(tslib.__importStar(mod))})})})'
2022-06-01 15:06:00 +08:00
};
2022-06-06 11:12:38 +08:00
// return {
// left: 'Promise.resolve().then(function() {return new Promise(function(fullfill) {require.ensure([',
// right:
// '], function(r) {fullfill(_interopDefaultLegacy(r("' +
// targetModuleId +
// '")))})})})'
// };
2022-06-01 15:06:00 +08:00
}
};
}
function getPlugins(format = 'esm') {
const overridePaths = ['amis-formula', 'amis-core', 'amis-ui'].reduce(
(prev, current) => ({
...prev,
[current]: [getCompiledEntryPath(current, format)]
}),
{}
);
2022-06-01 15:06:00 +08:00
const typeScriptOptions = {
typescript: require('typescript'),
sourceMap: false,
outputToFilesystem: true,
...(format === 'esm'
? {
compilerOptions: {
rootDir: './src',
outDir: path.dirname(module),
/** 覆盖继承自顶层tsconfig的paths配置编译时应该去掉避免报错@rollup/plugin-typescript TS6305 */
paths: overridePaths
2022-06-01 15:06:00 +08:00
}
}
: {
compilerOptions: {
rootDir: './src',
outDir: path.dirname(main),
paths: overridePaths
2022-06-01 15:06:00 +08:00
}
})
};
return [
2022-06-13 14:38:39 +08:00
svgr({
svgProps: {
className: 'icon'
},
prettier: false,
dimensions: false
}),
,
2022-06-01 15:06:00 +08:00
transpileDynamicImportForCJS(),
autoExternal(),
json(),
resolve({
jsnext: true,
main: true
}),
typescript(typeScriptOptions),
commonjs({
sourceMap: false
}),
license({
banner: `
${name} v${version}
Copyright 2018<%= moment().format('YYYY') > 2018 ? '-' + moment().format('YYYY') : null %> ${author}
`
})
];
}