代码拉取完成,页面将自动刷新
同步操作将从 mumu-page/mumu-editor 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import json from '@rollup/plugin-json'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { babel } from '@rollup/plugin-babel'
// import postcss from 'rollup-plugin-postcss-modules'
import postcss from 'rollup-plugin-postcss'
import typescript from 'rollup-plugin-typescript2'
import dts from 'rollup-plugin-dts'
import { terser } from 'rollup-plugin-terser'
const production = !process.env.ROLLUP_WATCH
export default [
{
input: 'src/visual-editor.tsx',
output: [
{
file: 'dist/index.js',
// 编译目标,es module
format: 'umd',
sourcemap: false,
name: 'ReactVisualEditor',
},
],
plugins: [
// 支持第三方模块
resolve({
preferBuiltins: false,
}),
// 支持 commonjs 格式
commonjs(),
babel({
exclude: '**/node_modules/**',
}),
json(),
postcss({
extract: true, // extracts to `${basename(dest)}.css`
plugins: [],
}),
typescript(),
production && terser(),
],
// 第三方模块不会强行打包到输出中
// external: (id) =>
// /^(react|antd|@ant-design\/icons)|@babel\/standalone/.test(id),
external: [
'@babel/standalone',
'antd',
'events',
'lodash',
'react',
'react-dom',
'react-draggable',
'react-infinite-viewer',
'react-moveable',
'react-split-pane',
'shortid',
'immer',
'@monaco-editor/react',
'@scena/react-guides',
],
},
// 打包声明文件
{
input: 'src/index.d.tsx',
output: [{ file: 'dist/index.d.ts', format: 'umd' }],
plugins: [dts()],
},
]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。