generated from victornpb/template-library-with-rollup
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
executable file
·209 lines (193 loc) · 5.11 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import banner from 'rollup-plugin-banner2';
import S from 'tiny-dedent';
import packageJson from './package.json';
const license = () => S(`
/*!
* ${packageJson.nameFull} v${packageJson.version} (${packageJson.homepage})
* Copyright (c) ${packageJson.author}
* @license ${packageJson.license}
*/
`
);
const production = !process.env.ROLLUP_WATCH;
const sourcemap = production ? true : 'inline';
const entry = 'src/index.js';
const assumptions = {
constantSuper: true,
enumerableModuleMeta: true,
ignoreFunctionLength: true,
ignoreToPrimitiveHint: true,
noClassCalls: true,
noDocumentAll: true,
noNewArrows: true,
privateFieldsAsProperties: true,
setClassMethods: true,
setComputedProperties: true,
setPublicClassFields: true,
};
const config = [
// Modern Module (No babel preset)
{
input: entry,
output: [
{
file: packageJson.module.replace('.js', '.mjs'),
format: 'esm',
sourcemap: false,
exports: 'default',
},
],
plugins: [
resolve(),
commonjs(),
// babel({
// assumptions,
// plugins: [
// ]
// }),
banner(license)
]
},
// CJS and ESM (preset-env)
{
input: entry,
output: [
{
file: packageJson.main,
format: 'cjs',
sourcemap,
exports: 'default',
},
{
file: packageJson.module,
format: 'esm',
sourcemap,
exports: 'default',
},
],
plugins: [
resolve(),
babel({
exclude: 'node_modules/**',
presets: [
[
'@babel/env',
{
modules: 'auto',
targets: {
browsers: '> 1%, IE 11, not op_mini all, not dead',
node: 8
},
// useBuiltIns: 'usage',
// corejs: 3,
}
]
],
assumptions,
plugins: [
]
}),
commonjs(),
// production &&
// terser({
// output: {
// // compress: false,
// // mangle: false,
// }
// }),
banner(license)
]
},
// Legacy UMD (preset-env)
{
input: entry,
output: [
{
name: packageJson.globalVar,
file: packageJson.unpkg,
format: 'umd',
sourcemap,
exports: 'default',
}
],
plugins: [
resolve(),
babel({
exclude: 'node_modules/**',
presets: [
[
'@babel/env',
{
modules: 'auto',
targets: {
browsers: '> 1%, IE 11, not op_mini all, not dead',
node: 8
},
// useBuiltIns: 'usage',
// corejs: 3,
}
]
],
assumptions,
plugins: [
]
}),
commonjs(),
production && terser({
output: {}
}),
banner(license)
]
}
];
// generate a markdown table containing output options for the README
function updateReadmeOutputTable() {
function generateOutputDescription(rollupConfig) {
const matrixToAsciiTable = require('asciitable.js');
const gihubTable = {
row: {
paddingLeft: '|',
paddingRight: '|',
colSeparator: '|',
lineBreak: '\n'
},
cell: {
paddingLeft: ' ',
paddingRight: ' ',
defaultAlignDir: -1
},
hr: {
str: '-',
colSeparator: '|'
}
};
const header = ['File', 'Module Type', 'Transpiled', 'Source Maps', /*'Import example'*/];
const lines = [header, null];
for (const config of rollupConfig) {
const babel = config.plugins.find(plugin => plugin.name === 'babel');
const transpiled = babel ? 'Yes' : 'No';
for (const outputConfig of config.output) {
const sourceMaps = outputConfig.sourcemap === true ? 'Yes' : 'No';
// const importExample = outputConfig.format === 'esm' ? `import ${packageJson.globalVar} from '${outputConfig.file}';` : `require('${outputConfig.file}')`;
lines.push([outputConfig.file, outputConfig.format, transpiled, sourceMaps, /*importExample*/]);
}
}
return matrixToAsciiTable(lines, gihubTable);
}
function replaceBetween(str, startString, endString, substitute) {
const startIndex = str.indexOf(startString);
const endIndex = str.indexOf(endString, startIndex + startString.length);
return (startIndex !== -1 && endIndex !== -1) ? str.slice(0, startIndex + startString.length) + substitute + str.slice(endIndex) : str;
}
const fs = require('fs');
const readme = fs.readFileSync('README.md', 'utf8');
const outputDescription = generateOutputDescription(config);
const newReadme = replaceBetween(readme, '<!-- Output table (auto generated do not modify) -->', '<!-- END -->', `\n\n${outputDescription}\n\n`);
fs.writeFileSync('README.md', newReadme);
}
updateReadmeOutputTable();
export default config;