-
Notifications
You must be signed in to change notification settings - Fork 41
/
rollup.config.js
56 lines (55 loc) · 1.22 KB
/
rollup.config.js
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
import path from 'path'
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import pluginVue from 'rollup-plugin-vue'
import postcss from 'rollup-plugin-postcss'
import { terser } from 'rollup-plugin-terser'
import { uglify } from 'rollup-plugin-uglify'
import clear from 'rollup-plugin-clear'
import vueJsx from '@vitejs/plugin-vue-jsx'
module.exports = {
input: path.resolve(__dirname, './package/index.js'),
output: [
{
file: path.resolve(__dirname, './dist/vue3-seamless-scroll.js'),
format: 'umd',
name: 'Vue3SeamlessScroll',
globals: {
vue: 'Vue'
}
},
{
file: path.resolve(__dirname, './dist/vue3-seamless-scroll.min.js'),
format: 'umd',
name: 'Vue3SeamlessScroll',
globals: {
vue: 'Vue'
},
plugins: [
uglify(),
terser()
]
},
{
file: path.resolve(__dirname, './dist/vue3-seamless-scroll.es.js'),
format: 'es',
globals: {
vue: 'Vue'
}
}
],
plugins: [
resolve(),
vueJsx(),
pluginVue(),
commonjs(),
postcss(),
clear({
targets: ['./dist'],
watch: true,
})
],
external: [
'vue'
]
}