-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
234 lines (213 loc) · 6.27 KB
/
rollup.config.js
File metadata and controls
234 lines (213 loc) · 6.27 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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import babel from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import copy from 'rollup-plugin-copy';
import { minify } from 'terser';
// Helpers
//
// - Display the size of a directory's content:
// find ./dist -type f -exec stat -f"%z" {} + | awk '{s+=$1} END {print s}'
const babelOptions = {
babelHelpers: 'bundled',
exclude: 'node_modules/**',
presets: [
[
'@babel/preset-env',
{
targets: { node: '10' },
modules: false, // handle ES modules in Rollup
useBuiltIns: false,
},
],
],
};
// https://github.com/terser/terser#compress-options
const terserMinifyOptions = (ecma) => ({
ecma,
compress: {
ecma,
passes: 3,
inline: true,
pure_getters: true,
// use these options to find a potential for optimisations in the code
//unsafe: true,
//unsafe_comps: true,
},
toplevel: true,
});
const terserPrettyOptions = (ecma) => ({
compress: false,
mangle: false, // disables name shortening
format: {
comments: false,
beautify: true, // pretty output (optional, for better readability)
indent_level: 2, // force 2-space indentation
},
});
/**
* Remove comments.
*
* @param {string} string
* @return {*}
*/
function removeComments(string) {
return string.replace(/\/\*[\s\S]*?\*\/|(?<=[^:])\/\/.*|^\/\/.*/g, '').trim();
}
/**
* Replace all leading indentation spaces with tabs in each line of a string.
* @param {string} input The multi-line string to process.
* @param {number} spacesPerTab Number of spaces per tab (default 2).
* @returns {string} The string with indentation spaces replaced by tabs.
*/
function indentSpacesToTabs(input, spacesPerTab = 2) {
const pattern = new RegExp(`^( {${spacesPerTab}})+`, 'gm');
return input.replace(pattern, (match) => '\t'.repeat(match.length / spacesPerTab));
}
/**
* Replace all empty lines in a multi-line string.
* @param {string} input The input multi-line string.
* @param {string} replacement The string to replace empty lines with (default is '').
* @returns {string} The string with empty lines replaced.
*/
function removeEmptyLines(input, replacement = '') {
return input.replace(/^\s*$/gm, replacement);
}
/**
* Minifies JavaScript code by removing unnecessary spaces around operators and punctuation,
* while preserving original indentation, line breaks, and string literals.
* Assumes all comments have already been removed.
*
* Note: If you're debugging the npm package directly in `node_modules`, you can use any IDE
* to reformat the code and restore all original spacing for easier readability.
*
* @param {string} code - The JavaScript source code to minify.
* @returns {string} - The minified code with preserved structure and formatting.
*/
function minifySpaces(code) {
let out = '';
let inString = false;
let stringChar = '';
let escape = false;
for (let i = 0; i < code.length; i++) {
const char = code[i];
const next = code[i + 1];
// handle strings
if (inString) {
out += char;
if (escape) {
escape = false;
} else if (char === '\\') {
escape = true;
} else if (char === stringChar) {
inString = false;
}
continue;
}
// detect string start
if (char === '"' || char === "'" || char === '`') {
inString = true;
stringChar = char;
out += char;
continue;
}
// remove spaces before/after these symbols
const isSpace = char === ' ';
const isSymbol = /[=+\-*/%<>!?:;,()[\]{}|&^~]/;
if (isSpace) {
const prev = out[out.length - 1];
if (isSymbol.test(prev) || isSymbol.test(next)) {
continue;
}
}
out += char;
}
return out;
}
/**
* Clean d.ts file content.
*
* @param {string} content
* @return {string}
*/
function clean(content) {
let out = removeComments(content);
out = removeEmptyLines(out);
out = indentSpacesToTabs(out);
return out;
}
/**
* Rollup plugin that applies a user transform function to code.
* @param {(code: string, file: object) => string} transform A function to transform code.
* @returns {import('rollup').Plugin}
*/
function transform(transform) {
return {
name: 'plugin-transform',
generateBundle(options, bundle) {
for (const file of Object.values(bundle)) {
if (file.type === 'chunk' && typeof transform === 'function') {
file.code = transform(file.code, file);
}
}
}
}
}
function buildConfig({ output, ecma }) {
return {
input: 'src/index.js',
output: {
file: `${output}/index.cjs`,
format: 'cjs',
exports: 'named',
intro: '',
strict: false,
esModule: false,
},
plugins: [
...(ecma < 2020 ? [babel(babelOptions)] : []),
terser(terserPrettyOptions(ecma)),
transform((code) => {
code = indentSpacesToTabs(code, 2)
// remove needles destructed variables after terser
.replaceAll('raw: raw', 'raw')
.replaceAll('values: values', 'values')
.replaceAll('alias: alias', 'alias')
.replaceAll('array: array', 'array')
.replaceAll('flags: flags', 'flags')
.replaceAll('offset: offset', 'offset');
return minifySpaces(code);
}),
copy({
targets: [
{
src: 'src/index.mjs',
dest: `${output}/`,
transform: async (contents) => (
await minify(
// transform the extension of the source file to output .cjs (it will be compiled to CommonJS)
contents.toString().replace('index.js', 'index.cjs'),
terserMinifyOptions(ecma)
)
).code,
},
{
src: 'src/index.d.ts',
dest: `${output}/`,
rename: 'index.d.ts',
transform: (contents) => clean(contents.toString()),
},
{
src: `package.npm.json`,
dest: `${output}/`,
rename: 'package.json',
transform: (contents) => indentSpacesToTabs(contents.toString()),
},
{ src: `README.npm.md`, dest: `${output}/`, rename: 'README.md' },
{ src: 'LICENSE', dest: `${output}/` },
],
}),
],
};
}
export default [
buildConfig({ output: 'dist', ecma: 2018 }), // ES9 (ES2018), Node.js 10+
];