189 lines
4.5 KiB
JavaScript
189 lines
4.5 KiB
JavaScript
|
// 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';
|
|||
|
import fs from 'fs';
|
|||
|
import i18nPlugin from 'plugin-react-i18n';
|
|||
|
import postcssImport from 'postcss-import';
|
|||
|
import minify from 'postcss-minify';
|
|||
|
import autoprefixer from 'autoprefixer';
|
|||
|
import {terser} from 'rollup-plugin-terser';
|
|||
|
import postcss from 'rollup-plugin-postcss';
|
|||
|
import replace from '@rollup/plugin-replace';
|
|||
|
const cssUrl = require('postcss-url');
|
|||
|
const i18nConfig = require('./i18nConfig');
|
|||
|
|
|||
|
const settings = {
|
|||
|
globals: {}
|
|||
|
};
|
|||
|
|
|||
|
const external = id =>
|
|||
|
new RegExp(
|
|||
|
`^(?:${Object.keys(dependencies)
|
|||
|
.concat(fs.readdirSync(path.join(__dirname, '../../node_modules')))
|
|||
|
.map(value =>
|
|||
|
value.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d')
|
|||
|
)
|
|||
|
.join('|')})`
|
|||
|
).test(id);
|
|||
|
const input = './src/index.ts';
|
|||
|
|
|||
|
export default [
|
|||
|
{
|
|||
|
input: ['./src/index.ts', './scss/editor.scss'],
|
|||
|
output: [
|
|||
|
{
|
|||
|
...settings,
|
|||
|
dir: path.dirname(main),
|
|||
|
format: 'cjs',
|
|||
|
exports: 'named',
|
|||
|
preserveModulesRoot: './src',
|
|||
|
preserveModules: false // Keep directory structure and files
|
|||
|
}
|
|||
|
],
|
|||
|
external,
|
|||
|
plugins: getPlugins('cjs').concat([
|
|||
|
postcss({
|
|||
|
include: 'scss/editor.scss',
|
|||
|
extract: path.resolve('lib/style.css'),
|
|||
|
plugins: [
|
|||
|
postcssImport(),
|
|||
|
autoprefixer(),
|
|||
|
minify(),
|
|||
|
cssUrl({
|
|||
|
url: 'inline',
|
|||
|
maxSize: 10
|
|||
|
})
|
|||
|
]
|
|||
|
})
|
|||
|
])
|
|||
|
},
|
|||
|
{
|
|||
|
input,
|
|||
|
output: [
|
|||
|
{
|
|||
|
...settings,
|
|||
|
dir: path.dirname(module),
|
|||
|
format: 'esm',
|
|||
|
exports: 'named',
|
|||
|
preserveModulesRoot: './src',
|
|||
|
preserveModules: false // Keep directory structure and files
|
|||
|
}
|
|||
|
],
|
|||
|
external,
|
|||
|
plugins: getPlugins('esm')
|
|||
|
}
|
|||
|
];
|
|||
|
|
|||
|
function transpileDynamicImportForCJS(options) {
|
|||
|
return {
|
|||
|
name: 'transpile-dynamic-import-for-cjs',
|
|||
|
renderDynamicImport({format, targetModuleId}) {
|
|||
|
if (format !== 'cjs') {
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
return {
|
|||
|
left: 'Promise.resolve().then(function() {return new Promise(function(fullfill) {require([',
|
|||
|
right:
|
|||
|
'], function(mod) {fullfill(require("tslib").__importStar(mod))})})})'
|
|||
|
};
|
|||
|
|
|||
|
// return {
|
|||
|
// left: 'Promise.resolve().then(function() {return new Promise(function(fullfill) {require.ensure([',
|
|||
|
// right:
|
|||
|
// '], function(r) {fullfill(_interopDefaultLegacy(r("' +
|
|||
|
// targetModuleId +
|
|||
|
// '")))})})})'
|
|||
|
// };
|
|||
|
}
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
function getPlugins(format = 'esm') {
|
|||
|
const typeScriptOptions = {
|
|||
|
typescript: require('typescript'),
|
|||
|
sourceMap: false,
|
|||
|
outputToFilesystem: true,
|
|||
|
...(format === 'esm'
|
|||
|
? {
|
|||
|
compilerOptions: {
|
|||
|
rootDir: './src',
|
|||
|
outDir: path.dirname(module)
|
|||
|
}
|
|||
|
}
|
|||
|
: {
|
|||
|
compilerOptions: {
|
|||
|
rootDir: './src',
|
|||
|
outDir: path.dirname(main)
|
|||
|
}
|
|||
|
})
|
|||
|
};
|
|||
|
|
|||
|
return [
|
|||
|
i18nPlugin(i18nConfig),
|
|||
|
typescript(typeScriptOptions),
|
|||
|
svgr({
|
|||
|
svgProps: {
|
|||
|
className: 'icon'
|
|||
|
},
|
|||
|
prettier: false,
|
|||
|
dimensions: false
|
|||
|
}),
|
|||
|
transpileDynamicImportForCJS(),
|
|||
|
autoExternal(),
|
|||
|
json(),
|
|||
|
resolve({
|
|||
|
jsnext: true,
|
|||
|
main: true
|
|||
|
}),
|
|||
|
replace({
|
|||
|
preventAssignment: true,
|
|||
|
__buildVersion: version
|
|||
|
}),
|
|||
|
commonjs({
|
|||
|
sourceMap: false
|
|||
|
}),
|
|||
|
terser({format: {quote_style: 1}}),
|
|||
|
license({
|
|||
|
banner: `
|
|||
|
${name} v${version}
|
|||
|
Copyright 2018<%= moment().format('YYYY') > 2018 ? '-' + moment().format('YYYY') : null %> ${author}
|
|||
|
`
|
|||
|
}),
|
|||
|
onRollupError(error => {
|
|||
|
console.warn(`[构建异常]${error}`);
|
|||
|
// 构建异常时,删除 tsconfig.tsbuildinfo
|
|||
|
fs.unlink(path.resolve(__dirname, 'tsconfig.tsbuildinfo'), () => {
|
|||
|
console.info(
|
|||
|
'[构建异常]已自动删除tsconfig.tsbuildinfo,请重试构建命令。'
|
|||
|
);
|
|||
|
});
|
|||
|
})
|
|||
|
];
|
|||
|
}
|
|||
|
|
|||
|
function onRollupError(callback = () => {}) {
|
|||
|
return {
|
|||
|
name: 'onerror',
|
|||
|
buildEnd(err) {
|
|||
|
if (err) {
|
|||
|
callback(err);
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
}
|