-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.ts
419 lines (342 loc) · 12.2 KB
/
index.ts
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import path from 'node:path';
import fsp from 'node:fs/promises';
import { fdir as Fdir } from 'fdir';
import { rollup as rollup2 } from 'rollup2';
import { rollup as rollup3 } from 'rollup3';
import { rollup as rollup4 } from 'rollup';
import type { Plugin as RollupPlugin, ExternalOption, InputOption, RollupOutput } from 'rollup';
import type { PluginOptions } from '../src';
import { swc, minify, preserveUseDirective } from '../src';
import json from '@rollup/plugin-json';
import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import type { JsMinifyOptions } from '@swc/core';
import chai from 'chai';
import { jestSnapshotPlugin } from 'mocha-chai-jest-snapshot';
import { create, destroy } from 'memdisk';
import { sync as whichSync } from 'which';
import { exec } from 'tinyexec';
chai.should();
chai.use(jestSnapshotPlugin());
function rollupInvriant(v: RollupOutput['output'][number] | undefined | null) {
if (v == null) {
throw new Error('Invariant failed');
}
if (!('code' in v)) {
throw new Error('Non rollup output module found!');
}
return v;
}
async function build(rollupImpl: typeof rollup2 | typeof rollup3 | typeof rollup4,
options?: PluginOptions,
{
input = './index.js',
otherRollupPlugins = [],
otherRollupPluginsAfterSwc = [],
sourcemap = false,
dir = '.',
external
}: {
input?: InputOption,
otherRollupPlugins?: RollupPlugin[],
otherRollupPluginsAfterSwc?: RollupPlugin[],
sourcemap?: boolean,
dir?: string,
external?: ExternalOption
} = {}) {
const build = await rollupImpl({
input: (() => {
if (typeof input === 'string') {
return path.resolve(dir, input);
}
if (Array.isArray(input)) {
return input.map((v) => path.resolve(dir, v));
}
return Object.entries(input).reduce<Record<string, string>>((acc, [key, value]) => {
acc[key] = path.resolve(dir, value);
return acc;
}, {});
})(),
...(
rollupImpl === rollup2
? {}
: { logLevel: 'silent' }
),
plugins: [...otherRollupPlugins, swc(options), ...otherRollupPluginsAfterSwc] as any,
external
});
const { output } = await build.generate({ format: 'esm', sourcemap });
return output;
}
async function runMinify(rollupImpl: typeof rollup2 | typeof rollup3 | typeof rollup4,
options: JsMinifyOptions,
{
input = './index.js',
otherRollupPlugins = [],
sourcemap = false,
dir = '.'
}) {
const build = await rollupImpl({
input: [...(Array.isArray(input) ? input : [input])].map((v) => path.resolve(dir, v)),
plugins: [...otherRollupPlugins, minify(options)] as any
});
const { output } = await build.generate({ format: 'esm', sourcemap });
return output;
}
function tests(
rollupImpl: typeof rollup2 | typeof rollup3 | typeof rollup4,
isolateDir: string,
packageManager: string
) {
const fixture = async (fixtureName: string) => {
const fixtureDir = path.join(__dirname, 'fixtures', fixtureName);
const testDir = path.join(isolateDir, 'rollup-plugin-swc', fixtureName);
let requireInstall = false;
const dirs = new Set<string>();
const files: Array<[from: string, to: string]> = [];
const entries = await new Fdir()
.withRelativePaths()
.crawl(fixtureDir)
.withPromise();
for (const entry of entries) {
const from = fixtureDir + path.sep + entry;
const to = path.join(testDir, entry);
const toDir = path.dirname(to);
dirs.add(toDir);
files.push([from, to]);
if (entry === 'package.json') {
// eslint-disable-next-line no-await-in-loop -- concurrent fs operation
const pkg = JSON.parse(await fsp.readFile(from, 'utf8'));
if (pkg.devDependencies || pkg.dependencies) {
requireInstall = true;
}
}
}
await Promise.all(Array.from(dirs).map(dir => fsp.mkdir(dir, { recursive: true })));
await Promise.all(files.map(([from, to]) => fsp.copyFile(from, to)));
if (requireInstall) {
await exec(packageManager, ['install'], { throwOnError: true, nodeOptions: { cwd: testDir } });
}
return testDir;
};
it('simple', async () => {
const dir = await fixture('simple');
const output = await build(rollupImpl, {}, { dir });
output[0].code.should.matchSnapshot();
});
it('minify', async () => {
const dir = await fixture('minify');
const output = await build(rollupImpl, { minify: true, jsc: { target: 'es2022' } }, { dir });
output[0].code.should.matchSnapshot();
});
it('standalone minify', async () => {
const dir = await fixture('standalone-minify');
const output = await runMinify(rollupImpl, {}, { dir });
output[0].code.should.matchSnapshot();
});
it('resolve index.(x)', async () => {
const dir = await fixture('resolve-index');
const output = await build(rollupImpl, { jsc: { target: 'es2022' } }, { dir });
output[0].code.should.matchSnapshot();
});
it('load json', async () => {
const dir = await fixture('load-json');
const output = await build(
rollupImpl,
{},
{ otherRollupPlugins: [json()], dir }
);
output[0].code.should.matchSnapshot();
});
it('support rollup virtual module (e.g. commonjs plugin)', async () => {
const dir = await fixture('rollup-commonjs');
const output = await build(
rollupImpl,
{ jsc: { target: 'es2022' } },
{ otherRollupPlugins: [commonjs()], dir }
);
output[0].code.should.matchSnapshot();
});
it('use custom jsxFactory (h) from tsconfig', async () => {
const dir = await fixture('tsconfig-custom-jsx-factory');
const output = await build(rollupImpl, {}, { input: './index.tsx', dir });
output[0].code.should.matchSnapshot();
});
it('use custom jsxFactory (h) from jsconfig.json', async () => {
const dir = await fixture('jsconfig-custom-jsx-factory');
const output = await build(rollupImpl, {}, { input: './index.tsx', dir });
output[0].code.should.matchSnapshot();
});
it('react 17 jsx transform', async () => {
const dir = await fixture('react-17-jsx-transform');
(
await build(rollupImpl, { tsconfig: 'tsconfig.react-jsx.json' }, { input: './index.tsx', dir, external: 'react/jsx-runtime' })
)[0].code.should.matchSnapshot();
(
await build(rollupImpl, { tsconfig: 'tsconfig.compiled.json' }, { input: './index.tsx', dir, external: '@compiled/react/jsx-runtime' })
)[0].code.should.matchSnapshot();
});
it('use tsconfig.json when tsconfig.json & jsconfig.json both exists', async () => {
const dir = await fixture('tsconfig-jsconfig');
const output = await build(rollupImpl, {}, { input: './index.tsx', dir });
output[0].code.should.matchSnapshot();
});
it('use custom tsconfig.json', async () => {
const dir = await fixture('custom-tsconfig');
const output = await build(
rollupImpl,
{ tsconfig: 'tsconfig.build.json' },
{ input: './index.jsx', dir }
);
output[0].code.should.matchSnapshot();
});
it('disable reading tsconfig.json', async () => {
const dir = await fixture('disable-reading-tsconfig');
const output = await build(
rollupImpl,
{ tsconfig: false },
{ input: './index.jsx', dir }
);
output[0].code.should.matchSnapshot();
});
it('load jsx/tsx', async () => {
const dir = await fixture('load-jsx-tsx');
const output = await build(rollupImpl, { jsc: { target: 'es2022' } }, { dir });
output[0].code.should.matchSnapshot();
});
it('tsconfig extends', async () => {
const dir = await fixture('tsconfig-extends');
(await build(
rollupImpl,
{},
{ input: './index.jsx', dir }
))[0].code.should.matchSnapshot();
(await build(
rollupImpl,
{ tsconfig: 'jsconfig.custom.json' },
{ input: './index.jsx', dir }
))[0].code.should.matchSnapshot();
});
it('tsconfig resolve to nearest tsconfig', async () => {
const dir = await fixture('tsconfig-resolve-to-nearest-tsconfig');
(await build(
rollupImpl,
{},
{ input: './index.jsx', dir }
))[0].code.should.matchSnapshot();
});
it('tsconfig - specify full path', async () => {
const dir = await fixture('tsconfig-full-path');
const tsconfigPath = path.resolve(dir, './foo/bar/tsconfig.json');
(await build(
rollupImpl,
{ tsconfig: tsconfigPath },
{ input: './index.jsx', dir }
))[0].code.should.matchSnapshot();
});
it('tsconfig - baseUrl & paths', async () => {
const dir = await fixture('tsconfig-baseurl-paths');
(await build(
rollupImpl,
{},
{ input: './src/index.ts', dir }
))[0].code.should.matchSnapshot();
});
it('tsconfig - paths', async () => {
const dir = await fixture('tsconfig-paths');
(await build(
rollupImpl,
{},
{ input: './src/index.ts', dir }
))[0].code.should.matchSnapshot();
});
it('target - include other files', async () => {
const dir = await fixture('extensions');
(await build(
rollupImpl,
{ extensions: ['.ts', '.mts', '.cts'], tsconfig: false },
{ input: './index.mts', dir, otherRollupPlugins: [commonjs({ extensions: ['.cts'] })] }
))[0].code.should.matchSnapshot();
});
it('directive - include "use client"', async () => {
const dir = await fixture('directive-include-use-client');
(await build(
rollupImpl,
{ tsconfig: false },
{ input: './index.tsx', dir, otherRollupPluginsAfterSwc: [preserveUseDirective()] }
))[0].code.should.matchSnapshot();
});
it('directive - merge "use client"', async () => {
const dir = await fixture('directive-merge-use-client');
(await build(
rollupImpl,
{ tsconfig: false },
{ input: './index.tsx', dir, otherRollupPluginsAfterSwc: [preserveUseDirective()] }
))[0].code.should.matchSnapshot();
});
it('directive - only output "use client" / "use server" in the specfic entry', async () => {
const dir = await fixture('directive-split-entry');
const output = (await build(
rollupImpl,
{ tsconfig: false },
{
input: {
client: './client.ts',
server: './server.ts'
},
dir, otherRollupPluginsAfterSwc: [preserveUseDirective()]
}
));
rollupInvriant(output.find(i => i.fileName === 'client.js') as any).code.should.matchSnapshot();
rollupInvriant(output.find(i => i.fileName === 'server.js') as any).code.should.matchSnapshot();
});
it('issue 58 - eventemitter3', async () => {
const dir = await fixture('issue-58');
(await build(
rollupImpl,
{ tsconfig: false },
{ input: './index.ts', dir, otherRollupPlugins: [nodeResolve(), commonjs()] }
))[0].code.should.matchSnapshot();
});
it('issue 63 - tsconfig baseUrl only + relative baseUrl', async () => {
const dir = await fixture('tsconfig-base-url-only-relative-issue-63');
(await build(
rollupImpl,
{ tsconfig: false },
{ input: './src/index.ts', dir, otherRollupPlugins: [nodeResolve(), commonjs()] }
))[0].code.should.matchSnapshot();
});
it('detect decorator for typescript5', async () => {
const dir = await fixture('decorators');
(await build(
rollupImpl,
{ tsconfig: false },
{ input: './index.ts', dir }
))[0].code.should.matchSnapshot();
});
it('detect legacy decorator for typescript5', async () => {
const dir = await fixture('legacy-decorators');
(await build(
rollupImpl,
{},
{ input: './index.ts', dir }
))[0].code.should.matchSnapshot();
});
}
describe('rollup-plugin-swc3', () => {
const packageManager = whichSync('pnpm', { nothrow: true }) || 'npm';
const ramDiskPath = create.sync('rolluppluginswc3test', 64 * 1024 * 1024, { quiet: false });
describe('swc (rollup 2)', () => {
const isolateDir = path.join(ramDiskPath, 'rollup2');
tests(rollup2, isolateDir, packageManager);
});
describe('swc (rollup 3)', () => {
const isolateDir = path.join(ramDiskPath, 'rollup3');
tests(rollup3, isolateDir, packageManager);
});
describe('swc (rollup 4)', () => {
const isolateDir = path.join(ramDiskPath, 'rollup4');
tests(rollup4, isolateDir, packageManager);
});
after(() => destroy.sync(ramDiskPath, { quiet: false }));
});