-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.size-limit.js
68 lines (60 loc) · 1.96 KB
/
.size-limit.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
const sizeMap = {
xxs: "1 KB",
xs: "5 KB",
s: "10 KB",
m: "25 KB",
l: "50 KB",
xl: "125 KB",
xxl: "200 KB",
tokens: "1 MB",
};
function getPackagePrefix(packagePath) {
if (packagePath.includes("plugins/")) return "plugin-";
if (packagePath.includes("toolboxes/")) return "toolbox-";
if (packagePath.includes("wallets/")) return "wallet-";
return "";
}
function getSizeFor(packagePath, sizeType) {
const size = sizeMap[sizeType];
if (!size) throw new Error(`Unknown size type ${sizeType}`);
const [, packageName] = packagePath.split("/");
const packagePrefix = getPackagePrefix(packagePath);
return [
{
limit: size,
path: `./packages/${packagePath}/dist/*.js`,
name: `@swapkit/${packagePrefix}${packageName}`,
},
];
}
module.exports = [
...getSizeFor("swapkit/api", "xs"),
...getSizeFor("swapkit/contracts", "s"),
...getSizeFor("swapkit/core", "xs"),
...getSizeFor("swapkit/helpers", "m"),
...getSizeFor("swapkit/sdk", "xxs"),
...getSizeFor("swapkit/tokens", "xxl"),
...getSizeFor("swapkit/wallets", "xxs"),
...getSizeFor("plugins/chainflip", "xs"),
...getSizeFor("plugins/evm", "s"),
...getSizeFor("plugins/thorchain", "s"),
...getSizeFor("toolboxes/cosmos", "m"),
...getSizeFor("toolboxes/evm", "s"),
...getSizeFor("toolboxes/substrate", "xs"),
...getSizeFor("toolboxes/utxo", "s"),
...getSizeFor("toolboxes/radix", "xxs"),
...getSizeFor("toolboxes/solana", "m"),
...getSizeFor("wallets/coinbase", "xs"),
...getSizeFor("wallets/evm-extensions", "xxs"),
...getSizeFor("wallets/exodus", "xs"),
...getSizeFor("wallets/keepkey", "xs"),
...getSizeFor("wallets/keplr", "xs"),
...getSizeFor("wallets/keystore", "xl"),
...getSizeFor("wallets/ledger", "xl"),
...getSizeFor("wallets/okx", "xs"),
...getSizeFor("wallets/phantom", "xxs"),
...getSizeFor("wallets/radix", "xxs"),
...getSizeFor("wallets/trezor", "xs"),
...getSizeFor("wallets/wc", "xs"),
...getSizeFor("wallets/xdefi", "xs"),
];