mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 19:28:14 +08:00
0636e1e240
* style: add import lint * chore: apply eslint rules * chore: add stricter lint * chore: lint all files * auto fix * manually fix * restore build-indices.ts
68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
import path from 'path'
|
|
import vue from 'rollup-plugin-vue'
|
|
import css from 'rollup-plugin-css-only'
|
|
import { nodeResolve } from '@rollup/plugin-node-resolve'
|
|
import esbuild from 'rollup-plugin-esbuild'
|
|
import { getPackagesSync } from '@lerna/project'
|
|
import pkg from '../package.json'
|
|
|
|
const noElPrefixFile = /(utils|directives|hooks|locale)/
|
|
const getOutFile = (name, dir = 'lib') => {
|
|
const compName = name.split('@element-plus/')[1]
|
|
if (noElPrefixFile.test(name)) {
|
|
return `${dir}/${compName}/index.js`
|
|
}
|
|
return `${dir}/el-${compName}/index.js`
|
|
}
|
|
|
|
const deps = Object.keys(pkg.dependencies)
|
|
const inputs = getPackagesSync()
|
|
.map((pkg) => pkg.name)
|
|
.filter((name) => name.includes('@element-plus') && !name.includes('utils'))
|
|
|
|
export default inputs.map((name: string) => ({
|
|
input: path.resolve(
|
|
__dirname,
|
|
`../packages/${name.split('@element-plus/')[1]}/index.ts`
|
|
),
|
|
output: [
|
|
{
|
|
format: 'es',
|
|
file: getOutFile(name, 'es'),
|
|
paths(id: string) {
|
|
if (/^@element-plus/.test(id)) {
|
|
if (noElPrefixFile.test(id)) return id.replace('@element-plus', '..')
|
|
return id.replace('@element-plus/', '../el-')
|
|
}
|
|
},
|
|
},
|
|
{
|
|
format: 'cjs',
|
|
file: getOutFile(name, 'lib'),
|
|
exports: 'named',
|
|
paths(id: string) {
|
|
if (/^@element-plus/.test(id)) {
|
|
if (noElPrefixFile.test(id)) return id.replace('@element-plus', '..')
|
|
return id.replace('@element-plus/', '../el-')
|
|
}
|
|
},
|
|
},
|
|
],
|
|
plugins: [
|
|
css(),
|
|
vue({
|
|
target: 'browser',
|
|
// css: false,
|
|
}),
|
|
nodeResolve(),
|
|
esbuild(),
|
|
],
|
|
external(id: string) {
|
|
return (
|
|
/^vue/.test(id) ||
|
|
/^@element-plus/.test(id) ||
|
|
deps.some((k) => new RegExp(`^${k}`).test(id))
|
|
)
|
|
},
|
|
}))
|