forked from webauthn-open-source/fido2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
69 lines (67 loc) · 1.44 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
const devExternals = [
"chai",
"chai-as-promised",
"sinon",
];
const externals = [
"@hexagon/base64",
"url",
"tldts",
"punycode",
"jose",
"pkijs",
"asn1js",
"cbor-x",
"crypto",
"@peculiar/webcrypto",
];
const tests = [
"test/asn1.test.js",
"test/certUtils.test.js",
"test/extAppId.test.js",
"test/ext.test.js",
"test/keyUtils.test.js",
"test/main.test.js",
"test/mds.test.js",
"test/parseAndroidSafetyNetAttestationData.test.js",
"test/parseAssertion.test.js",
"test/parseBadData.test.js",
"test/parseClientData.test.js",
"test/parseExpectations.test.js",
"test/parseNoneAttestationData.test.js",
"test/parseNoneAttestationDataExtensions.test.js",
"test/parsePackedAttestationData.test.js",
"test/parsePackedSelfAttestationData.test.js",
"test/parseTpmAttestationData.test.js",
"test/parseU2fAttestationData.test.js",
"test/parseJustExtensions.test.js",
"test/parseAppleAttestationData.test.js",
"test/response.test.js",
"test/toolbox.test.js",
"test/utils.test.js",
"test/validator.test.js",
];
function surpressWarnings(message, warn) {
if (message.code === "CIRCULAR_DEPENDENCY") return;
warn(message);
}
export default [
{
input: "lib/main.js",
external: [...externals],
output: {
file: "dist/main.cjs",
format: "cjs",
},
onwarn: surpressWarnings,
},
{
input: [...tests],
external: [...externals,...devExternals],
output: {
dir: "test/dist/",
format: "cjs",
},
onwarn: surpressWarnings,
},
];