-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
114 lines (108 loc) · 3.57 KB
/
rollup.config.js
File metadata and controls
114 lines (108 loc) · 3.57 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
import process from 'node:process';
import commonjs from '@rollup/plugin-commonjs';
import {nodeResolve} from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import replace from '@rollup/plugin-replace';
import alias from '@rollup/plugin-alias';
import terser from '@rollup/plugin-terser';
import {visualizer} from 'rollup-plugin-visualizer';
const {MINIFY, SLIM} = process.env;
const createReplacement = (a) => ({
find: `node:${a}`,
replacement: a,
});
const createEmpty = (find) => ({
find,
replacement: new URL('./lib/empty.js', import.meta.url).pathname,
});
const createDebug = () => ({
find: 'debug',
replacement: new URL('./lib/debug.js', import.meta.url).pathname,
});
const createObug = () => ({
find: 'obug',
replacement: new URL('./lib/debug.js', import.meta.url).pathname,
});
export default {
input: 'lib/putout.js',
output: {
file: 'bundle/putout.js',
format: 'es',
},
plugins: [
MINIFY && terser(),
alias({
entries: [{
find: './loader.mjs',
replacement: new URL('./lib/loader.js', import.meta.url).pathname,
},
...[
'esprima',
'espree',
'acorn',
'hermes-parser',
'tenko',
'ignore',
'acorn-private-class-elements',
'acorn-class-fields',
'acorn-static-class-features',
'acorn-typescript',
'acorn-stage-3',
].map(createEmpty), ...SLIM ? [createDebug()] : [], ...SLIM ? [createObug()] : [], ...[
'events',
'module',
'path',
'process',
].map(createReplacement)],
}),
commonjs({
defaultIsModuleExports: false,
strictRequires: 'auto',
exclude: [
'**/lib/loader.*',
'**/parse-options/**',
'acorn',
'tenko*',
'hermes-parser/*',
'acorn-stage-3',
'caniuse',
'esprima',
'hermes*',
'espree',
'electron*',
'node-releases',
'os',
'path',
'fs',
'module',
'buffer',
'process',
],
}),
nodeResolve({
preferBuiltins: false,
browser: true,
}),
nodePolyfills(),
json(),
visualizer({
filename: './stats.html', // куда сохранить визуализацию
}),
replace({
preventAssignment: true,
values: {
'var regexpTree$1 = regexpTree.default': 'var regexpTree$1 = regexpTreeParser',
'var wraptile$1 = wraptile.default': 'var wraptile$1 = wraptile',
'var fullstore$2 = fullstore$1.default': 'var fullstore$2 = fullstore$1',
'process.env.BABEL_TYPES_8_BREAKING': true,
'Buffer.isBuffer': 'Array.isArray',
'process.platform': '"unix"',
'process.env.BABEL_TYPES_8_BREAKING = true': '',
'process.env': '{}',
'export {load} from "./loader.mjs"': '',
[`const {isBuiltin} = require('node:module')`]: `import builtinModules from 'builtin-modules';const isBuiltin = (a) => bultins.includes(a)`,
},
}),
],
};