-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
62 lines (56 loc) · 1.37 KB
/
rollup.config.js
File metadata and controls
62 lines (56 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* @Description:
* @Date: 2022-07-06 10:15:25
*/
const path = require('path');
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import jsx from 'acorn-jsx';
import babel from 'rollup-plugin-babel';
import typescript from 'typescript';
import clear from 'rollup-plugin-clear';
import rollupTypescript from 'rollup-plugin-typescript2';
import rollupVue from 'rollup-plugin-vue';
import rollupPostcss from 'rollup-plugin-postcss';
import autoprefixer from 'autoprefixer';
import json from '@rollup/plugin-json';
const outdir = 'lib';
export default {
input: 'packages/index.ts',
output: [
{
format: 'esm',
file: `${outdir}/index.esm.js`
},
{
name: 'fd',
format: 'umd',
file: `${outdir}/index.umd.js`
}
],
plugins: [
clear({ targets: [outdir] }),
resolve(),
json(),
rollupTypescript({
check: false,
include: ['packages/**/*.ts+(|x)', 'tools/**/*.ts+(|x)'],
exclude: 'node_modules/**',
typescript: typescript
}),
rollupVue({
preprocessStyles: true
}),
rollupPostcss({
extract: path.resolve(`${outdir}/index.css`),
plugins: [autoprefixer()]
}),
commonjs(),
babel({
runtimeHelpers: true,
exclude: 'node_modules/**'
})
],
acornInjectPlugins: [jsx()],
external: ['vue', 'xrk-tools']
};