forked from iliyaZelenko/tiptap-vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
142 lines (139 loc) · 4.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import commonjs from 'rollup-plugin-commonjs'
import vue from 'rollup-plugin-vue'
import typescript from 'rollup-plugin-typescript2'
import alias from 'rollup-plugin-alias'
import postcss from 'rollup-plugin-postcss'
import nodeResolve from 'rollup-plugin-node-resolve'
import ttypescript from 'ttypescript'
import { join } from 'path'
import postcssPresetEnv from 'postcss-preset-env'
import babel from 'rollup-plugin-babel'
import replace from 'rollup-plugin-replace'
const isProduction = process.env.BUILD === 'production'
const srcDir = join(__dirname, 'src')
const distDir = join(__dirname, 'dist')
export default async () => [
// You can also get a more optimized wrapper by creating dedicated builds for the formats “cjs” (Node), “amd” or “iife” (script tag)
await getConfig({
optimize: true,
output: {
file: join(distDir, 'bundle-umd.js'),
format: 'umd',
esModule: true
}
// не важно какой output.format, главное сгенерировать css файл один раз, а не для каждой сборки (конфига)
// generateCssFile: join(distDir, 'main.css')
}),
await getConfig({
optimize: true,
output: {
file: join(distDir, 'bundle-esm.js'),
format: 'esm',
// это отдельная сборка под ES модули
esModule: true
}
}),
await getConfig({
optimize: true,
output: {
file: join(distDir, 'bundle-cjs.js'),
format: 'cjs'
}
}),
await getConfig({
optimize: true,
output: {
file: join(distDir, 'bundle-iife.js'),
format: 'iife'
}
})
]
async function getConfig ({
optimize = false,
output: {
file,
format,
esModule = false
},
plugins = []
}) {
return {
input: join(srcDir, 'main.ts'),
output: {
esModule,
file,
format,
exports: 'named',
// используется в umd и в iife
name: 'tiptapVuetify',
globals: {
vue: 'Vue',
// https://github.com/vuejs/vue-class-component/blob/master/build/build.js
// 'vue-class-component': 'VueClassComponent',
// https://github.com/kaorun343/vue-property-decorator/blob/master/rollup.config.js
// 'vue-property-decorator': 'VuePropertyDecorator',
tiptap: 'tiptap',
// Походу так и есть: https://github.com/scrumpy/tiptap/blob/master/build/packages/config.js#L44
'tiptap-extensions': 'tiptap', // TODO tiptapExtensions
vuetify: 'Vuetify',
'vuetify/lib': 'Vuetify'
}
},
// TODO можно Object.keys(globals)
external: [
'vue',
// 'vue-class-component',
// 'vue-property-decorator',
'tiptap',
'tiptap-extensions',
'vuetify',
'vuetify/lib'
],
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify('production')
}),
alias({
resolve: ['.ts', '.js', '.vue'],
'~': srcDir
}),
// TODO раньшн nodeResolve был после commonjs (но в github я видел в таком порядке)
nodeResolve({
mainFields: ['module', 'main', 'browser'],
extensions: ['.ts', '.js', '.vue', '.json']
}),
typescript({
// это фиксит Unknown object type "asyncfunction"
// https://github.com/ezolenko/rollup-plugin-typescript2/issues/105
clean: true,
typescript: ttypescript
}),
commonjs({
extensions: ['.ts', '.js']
}),
// TODO autoprefixer (update: разве в postcssPresetEnv его нет?)
postcss({
// TODO для каждого конфига генерируется свой main.css (одинаковый файл), исправить
extract: join(distDir, 'main.css'),
minimize: true,
plugins: [
postcssPresetEnv
]
}),
vue({
defaultLang: { script: 'ts' },
// Inject CSS in JavaScript. Setting css: false would extract styles in a .css file.
css: false
}),
// транспилирует
babel({
exclude: 'node_modules/**',
runtimeHelpers: true,
extensions: ['.js', '.ts']
}),
// оптимизация
optimize && isProduction && (await import('rollup-plugin-terser')).terser(),
...plugins
]
}
}