-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathapp.agar-make.js
38 lines (32 loc) · 1.12 KB
/
app.agar-make.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
// @ts-nocheck
// This script regenerates app.agar, an archived application generated
// from the test fixtures.
// This should be done *manually*, *rarely* and *deliberately*.
// The checked-in archive exists to verify that the current archive importer
// can recognize an archive generated with a previous version.
// The archive may need to be regenerated if the test fixture and assertions
// have been changed.
/* global process */
import 'ses';
import fs from 'fs';
import crypto from 'crypto';
import url from 'url';
import { writeArchive } from '../archive.js';
import { makeReadPowers, makeWritePowers } from '../src/node-powers.js';
const readPowers = makeReadPowers({ fs, crypto, url });
const { write } = makeWritePowers({ fs, url });
const fixture = new URL(
'fixtures-0/node_modules/app/main.js',
import.meta.url,
).toString();
const archiveFixture = new URL('app.agar', import.meta.url).toString();
const mitt = err =>
process.nextTick(() => {
throw err;
});
writeArchive(write, readPowers, archiveFixture, fixture, {
conditions: new Set(['development']),
modules: {
builtin: true,
},
}).catch(mitt);