forked from i18next/i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
57 lines (51 loc) · 1.5 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
import babel from '@rollup/plugin-babel';
import nodeResolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
const getBabelOptions = ({ useESModules }) => ({
exclude: /node_modules/,
babelHelpers: 'runtime',
plugins: [['@babel/transform-runtime', { useESModules }]],
comments: false,
});
const input = './src/index.js';
const inputCjs = './src/index.cjs.js';
const name = 'i18next';
// check relative and absolute paths for windows and unix
const external = (id) => !id.startsWith('.') && !id.startsWith('/') && !id.includes(':');
export default [
{
input: inputCjs,
output: { format: 'cjs', file: pkg.main },
external,
plugins: [babel(getBabelOptions({ useESModules: false }))],
},
{
input,
output: { format: 'esm', file: pkg.module },
external,
plugins: [babel(getBabelOptions({ useESModules: true }))],
},
{
input,
output: { format: 'esm', file: './dist/esm/i18next.bundled.js' },
external,
plugins: [
babel({
exclude: /node_modules/,
babelHelpers: 'bundled',
comments: false,
}),
],
},
{
input: inputCjs,
output: { format: 'umd', name, file: `dist/umd/${name}.js` },
plugins: [babel(getBabelOptions({ useESModules: true })), nodeResolve()],
},
{
input: inputCjs,
output: { format: 'umd', name, file: `dist/umd/${name}.min.js` },
plugins: [babel(getBabelOptions({ useESModules: true })), nodeResolve(), terser()],
},
];