mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:31:47 +08:00
8c6751f0c6
* chore: add precommit hook for eslint fixes, fix linting issues * chore: add eslint import sort plugin
110 lines
2.8 KiB
JavaScript
110 lines
2.8 KiB
JavaScript
import sizes from '@atomico/rollup-plugin-sizes'
|
|
import batchPackages from '@lerna/batch-packages'
|
|
import { filterPackages } from '@lerna/filter-packages'
|
|
import { getPackages } from '@lerna/project'
|
|
import babel from '@rollup/plugin-babel'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import resolve from '@rollup/plugin-node-resolve'
|
|
import fs from 'fs'
|
|
import minimist from 'minimist'
|
|
import path from 'path'
|
|
import autoExternal from 'rollup-plugin-auto-external'
|
|
import sourcemaps from 'rollup-plugin-sourcemaps'
|
|
import typescript from 'rollup-plugin-typescript2'
|
|
|
|
async function getSortedPackages(scope, ignore) {
|
|
const packages = await getPackages(__dirname)
|
|
const filtered = filterPackages(packages, scope, ignore, false)
|
|
|
|
return batchPackages(filtered)
|
|
.filter(item => item.name !== '@tiptap/demos')
|
|
.reduce((arr, batch) => arr.concat(batch), [])
|
|
}
|
|
|
|
async function build(commandLineArgs) {
|
|
const config = []
|
|
|
|
// Support --scope and --ignore globs if passed in via commandline
|
|
const { scope, ignore } = minimist(process.argv.slice(2))
|
|
const packages = await getSortedPackages(scope, ignore)
|
|
|
|
// prevent rollup warning
|
|
delete commandLineArgs.ci
|
|
delete commandLineArgs.scope
|
|
delete commandLineArgs.ignore
|
|
|
|
packages.forEach(pkg => {
|
|
const basePath = path.relative(__dirname, pkg.location)
|
|
const input = path.join(basePath, 'src/index.ts')
|
|
const {
|
|
name,
|
|
main,
|
|
umd,
|
|
module,
|
|
} = pkg.toJSON()
|
|
|
|
const basePlugins = [
|
|
sourcemaps(),
|
|
resolve(),
|
|
commonjs(),
|
|
babel({
|
|
babelHelpers: 'bundled',
|
|
exclude: 'node_modules/**',
|
|
}),
|
|
sizes(),
|
|
]
|
|
|
|
config.push({
|
|
// perf: true,
|
|
input,
|
|
output: [
|
|
{
|
|
name,
|
|
file: path.join(basePath, umd),
|
|
format: 'umd',
|
|
sourcemap: true,
|
|
},
|
|
{
|
|
name,
|
|
file: path.join(basePath, main),
|
|
format: 'cjs',
|
|
sourcemap: true,
|
|
exports: 'auto',
|
|
},
|
|
{
|
|
name,
|
|
file: path.join(basePath, module),
|
|
format: 'es',
|
|
sourcemap: true,
|
|
},
|
|
],
|
|
plugins: [
|
|
autoExternal({
|
|
packagePath: path.join(basePath, 'package.json'),
|
|
}),
|
|
...basePlugins,
|
|
typescript({
|
|
tsconfig: fs.existsSync(`${basePath}/tsconfig.json`)
|
|
? `${basePath}/tsconfig.json`
|
|
: 'tsconfig.json',
|
|
tsconfigOverride: {
|
|
compilerOptions: {
|
|
declaration: true,
|
|
paths: {
|
|
'@tiptap/*': ['packages/*/src'],
|
|
},
|
|
},
|
|
include: fs.existsSync(`${basePath}/tsconfig.json`)
|
|
? []
|
|
: null,
|
|
},
|
|
}),
|
|
],
|
|
})
|
|
})
|
|
|
|
return config
|
|
}
|
|
|
|
export default build
|