forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
252 lines (232 loc) · 7.42 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import * as path from 'path';
import * as glob from 'glob';
import autoprefixer from 'autoprefixer';
import alias from '@rollup/plugin-alias';
import { babel } from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import eslint from '@rollup/plugin-eslint';
import ignore from 'rollup-plugin-ignore';
import json from '@rollup/plugin-json';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import postcss from 'rollup-plugin-postcss';
import { string } from 'rollup-plugin-string';
import svgo from 'rollup-plugin-svgo';
import webworkerLoader from 'rollup-plugin-web-worker-loader';
import copy from 'rollup-plugin-copy';
import pkgJSON from './package.json';
import { rewriteFilenames } from './Utilities/rollup/plugin-rewrite-filenames';
import { generateDtsReferences } from './Utilities/rollup/plugin-generate-references';
const relatifyImports = require('./Utilities/build/rewrite-imports');
const IGNORE_LIST = [
/[/\\]example_?[/\\]/,
/[/\\]test/,
/^Sources[/\\](Testing|ThirdParty)/,
];
function ignoreFile(name, ignoreList = IGNORE_LIST) {
return ignoreList.some((toMatch) => {
if (toMatch instanceof RegExp) {
return toMatch.test(name);
}
if (toMatch instanceof String) {
return toMatch === name;
}
return false;
});
}
const entryPoints = [
path.join('Sources', 'macros.js'),
path.join('Sources', 'vtk.js'),
path.join('Sources', 'favicon.js'),
...glob.sync('Sources/**/*.js').filter((file) => !ignoreFile(file)),
];
const entries = {};
entryPoints.forEach((entry) => {
entries[entry.replace(/^Sources[/\\]/, '')] = entry;
});
const outputDir = path.resolve('@kitware', 'vtk.js');
const dependencies = Object.keys(pkgJSON.dependencies || []);
const peerDependencies = Object.keys(pkgJSON.peerDependencies || []);
export default {
input: entries,
output: {
dir: outputDir,
format: 'es',
hoistTransitiveImports: false,
entryFileNames(chunkInfo) {
const name = chunkInfo.name;
// rewrite vtk.js files from Sources/.../<NAME>/index.js to .../<NAME>.js
const sourcesMatch = /^(.*?)[/\\]([A-Z]\w+)[/\\]index\.js$/.exec(name);
if (sourcesMatch) {
return path.join(sourcesMatch[1], `${sourcesMatch[2]}.js`);
}
return name;
},
manualChunks(id) {
// strip out full path to project root
return id.replace(`${path.resolve(__dirname)}${path.sep}`, '');
},
chunkFileNames(chunkInfo) {
let name = chunkInfo.name;
if (!name.endsWith('.js')) {
name += '.js';
}
if (name.includes('node_modules')) {
return name.replace('node_modules', 'vendor');
}
// throw all subscript prefixed chunks into a virtual folder
if (name.startsWith('_')) {
return name.replace(/^_/, `_virtual${path.sep}`);
}
// rewrite Sources/ chunks
return name.replace(/^Sources[/\\]/, '');
},
},
external: [
...dependencies.map((name) => new RegExp(`^${name}`)),
...peerDependencies.map((name) => new RegExp(`^${name}`)),
],
plugins: [
alias({
entries: [{ find: 'vtk.js', replacement: path.resolve(__dirname) }],
}),
// ignore crypto module
ignore(['crypto']),
// needs to be before nodeResolve
webworkerLoader({
targetPlatform: 'browser',
// needs to match the full import statement path
pattern: /^.+\.worker(?:\.js)?$/,
// inline externals for webworkers
external: [],
inline: true,
preserveSource: true,
}),
nodeResolve({
// don't rely on node builtins for web
preferBuiltins: false,
browser: true,
}),
!process.env.NOLINT &&
eslint({
include: '**/*.js',
exclude: 'node_modules/**',
}),
// commonjs should be before babel
commonjs({
transformMixedEsModules: true,
}),
// should be after commonjs
nodePolyfills(),
babel({
include: 'Sources/**',
exclude: 'node_modules/**',
extensions: ['.js'],
babelHelpers: 'runtime',
}),
string({
include: '**/*.glsl',
}),
json(),
svgo(),
postcss({
modules: true,
plugins: [autoprefixer],
}),
// windows ntfs hates colons in filenames,
// and node-resolve and web-worker-loader are notorious for
// inserting them into virtual modules that are written out
// to the filesystem via preserveModules: true.
rewriteFilenames({
find: /:/g,
replace: '_',
}),
// copy package assets
copy({
flatten: false,
targets: [
{
src: 'Sources/**/*.d.ts',
dest: outputDir,
rename(name, ext, fullPath) {
const filename = `${name}.${ext}`;
if (
filename === 'index.d.ts' &&
path.dirname(fullPath) !== 'Sources'
) {
const moduleName = path.basename(path.dirname(fullPath));
return `../${moduleName}.d.ts`;
}
return `${name}.${ext}`;
},
transform(content, base) {
// transforms typescript defs to use absolute package imports
if (base.endsWith('.d.ts')) {
return relatifyImports(content.toString(), (relImport) => {
let importPath = relImport;
const baseName = path.basename(base);
if (
baseName === 'index.d.ts' &&
path.dirname(base) !== 'Sources' &&
(importPath.startsWith('../') || importPath.startsWith('./'))
) {
// this file will be moved up one folder, so
// all of its relative imports must be adjusted.
const baseDir = path.dirname(base);
const resolvedImportPath = path.resolve(
`${baseDir}/${importPath}`
);
importPath = `./${path.relative(
`${baseDir}/..`,
resolvedImportPath
)}`.replace(/\\/g, '/');
}
return importPath;
});
}
return content;
},
},
],
}),
generateDtsReferences({
dest: outputDir,
}),
copy({
flatten: true,
targets: [
{ src: 'Utilities/XMLConverter', dest: `${outputDir}/Utilities` },
{ src: 'Utilities/DataGenerator', dest: `${outputDir}/Utilities` },
{ src: 'Utilities/prepare.js', dest: `${outputDir}/Utilities` },
{ src: 'Utilities/config/*', dest: `${outputDir}/Utilities/config` },
{
src: 'Utilities/build/macro-shim.d.ts',
dest: outputDir,
rename: 'macro.d.ts',
},
{
src: 'Utilities/build/macro-shim.js',
dest: outputDir,
rename: 'macro.js',
},
{ src: '*.txt', dest: outputDir },
{ src: '*.md', dest: outputDir },
{ src: 'tsconfig.json', dest: outputDir },
{ src: '.npmignore', dest: outputDir },
{ src: 'LICENSE', dest: outputDir },
{
src: 'package.json',
dest: outputDir,
transform(content) {
const pkg = JSON.parse(content);
pkg.name = '@kitware/vtk.js';
pkg.main = './index.js';
pkg.module = './index.js';
pkg.types = './index.d.ts';
return JSON.stringify(pkg, null, 2);
},
},
],
}),
],
};