mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
243c6ab0d2
* fix: bring back global rollup config * fix: add rollup build for packages except pm * fix: rollup global build * fix: fix memory leak on build * fix(character-count): revert files * fix: builds run individual per rollup and lerna * chore: remove old rollup * fix(blockquote): correct the main module path * fix(character count): bump version number
60 lines
1.2 KiB
JavaScript
60 lines
1.2 KiB
JavaScript
import sizes from '@atomico/rollup-plugin-sizes'
|
|
import babel from '@rollup/plugin-babel'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import resolve from '@rollup/plugin-node-resolve'
|
|
import autoExternal from 'rollup-plugin-auto-external'
|
|
import sourcemaps from 'rollup-plugin-sourcemaps'
|
|
import typescript from 'rollup-plugin-typescript2'
|
|
|
|
import pkg from './package.json'
|
|
|
|
export default {
|
|
input: 'src/index.ts',
|
|
output: [
|
|
{
|
|
name: pkg.name,
|
|
file: pkg.umd,
|
|
format: 'umd',
|
|
sourcemap: true,
|
|
},
|
|
{
|
|
name: pkg.name,
|
|
file: pkg.main,
|
|
format: 'cjs',
|
|
sourcemap: true,
|
|
exports: 'auto',
|
|
},
|
|
{
|
|
name: pkg.name,
|
|
file: pkg.module,
|
|
format: 'es',
|
|
sourcemap: true,
|
|
},
|
|
],
|
|
plugins: [
|
|
autoExternal({
|
|
packagePath: './package.json',
|
|
}),
|
|
sourcemaps(),
|
|
resolve(),
|
|
commonjs(),
|
|
babel({
|
|
babelHelpers: 'bundled',
|
|
exclude: '../../node_modules/**',
|
|
}),
|
|
sizes(),
|
|
typescript({
|
|
tsconfig: '../../tsconfig.json',
|
|
tsconfigOverride: {
|
|
compilerOptions: {
|
|
declaration: true,
|
|
paths: {
|
|
'@tiptap/*': ['packages/*/src'],
|
|
},
|
|
},
|
|
include: null,
|
|
},
|
|
}),
|
|
],
|
|
}
|