Skip to content

Commit 5e1a47e

Browse files
committedJul 4, 2022
chore: project config
chore: add lint settings feat: precommit script
1 parent b5988d7 commit 5e1a47e

18 files changed

+323
-13
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
cache/
22
out/
3+
node_modules/

‎.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lib

‎.prettierrc

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": "*.sol",
5+
"options": {
6+
"tabWidth": 4,
7+
"printWidth": 80,
8+
"useTabs": false,
9+
"singleQuote": false,
10+
"bracketSpacing": false,
11+
"explicitTypes": "always"
12+
}
13+
},
14+
{
15+
"files": ["*.js", "*.md"],
16+
"options": {
17+
"tabWidth": 2,
18+
"printWidth": 80,
19+
"useTabs": false,
20+
"semi": true,
21+
"singleQuote": true,
22+
"bracketSpacing": true,
23+
"trailingComma": "all"
24+
}
25+
}
26+
]
27+
}

‎foundry.toml

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,17 @@
22
src = 'src'
33
out = 'out'
44
libs = ['lib']
5+
test = 'test'
56

6-
# See more config options https://github.com/gakonst/foundry/tree/master/config
7+
solc_version = '0.8.15'
8+
optimizer = true
9+
optimizer_runs = 200
10+
via_ir = true
11+
verbosity = 3
12+
13+
# ignore solc warnings for missing license
14+
ignored_error_codes = [1878]
15+
gas_price = 1
16+
17+
18+
# See more config options https://github.com/gakonst/foundry/tree/master/config

‎package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "@socket.tech/socket-dl",
3+
"license": "UNLICENSED",
4+
"version": "0.0.0",
5+
"description": "Smart contracts for socket data layer.",
6+
"files": [
7+
"src/**/*.sol"
8+
],
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/SocketDotTech/socket-DL.git"
12+
},
13+
"devDependencies": {
14+
"pre-commit": "^1.2.2",
15+
"prettier": "^2.3.1",
16+
"prettier-plugin-solidity": "^1.0.0-beta.13"
17+
},
18+
"scripts": {
19+
"lint": "prettier --write **.sol"
20+
},
21+
"pre-commit": [ "lint" ]
22+
}

‎src/Socket.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "./interfaces/ISocket.sol";
55
import "./utils/AccessControl.sol";

‎src/accumulators/SingleAccum.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "./BaseAccum.sol";
55

‎src/interfaces/IAccumulator.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
abstract contract IAccumulator {
55
bytes32 public SOCKET_ROLE = keccak256("SOCKET_ROLE");

‎src/interfaces/ISocket.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
interface ISocket {
55
event BondAdded(

‎src/mocks/MockAccessControl.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "../utils/AccessControl.sol";
55

‎src/mocks/MockOwnable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "../utils/Ownable.sol";
55

‎src/test/AcceptWithTimeout.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "forge-std/Test.sol";
55
import {AcceptWithTimeout} from "../verifiers/AcceptWithTimeout.sol";

‎src/utils/AccessControl.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "./Ownable.sol";
55

‎src/utils/Ownable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-only
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
abstract contract Ownable {
55
address private _owner;

‎test/AccessControl.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "forge-std/Test.sol";
55
import "../src/mocks/MockAccessControl.sol";

‎test/Ownable.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "forge-std/Test.sol";
55
import "../src/mocks/MockOwnable.sol";

‎test/SingleAccum.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import "forge-std/Test.sol";
55
import "../src/accumulators/SingleAccum.sol";

‎yarn.lock

+247
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,247 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
"@solidity-parser/parser@^0.14.0":
6+
version "0.14.2"
7+
resolved "https://registry.yarnpkg.com/@solidity-parser/parser/-/parser-0.14.2.tgz#2d8f2bddb217621df882ceeae7d7b42ae8664db3"
8+
integrity sha512-10cr0s+MtRtqjEw0WFJrm2rwULN30xx7btd/v9cmqME2617/2M5MbHDkFIGIGTa7lwNw4bN9mVGfhlLzrYw8pA==
9+
dependencies:
10+
antlr4ts "^0.5.0-alpha.4"
11+
12+
ansi-regex@^5.0.1:
13+
version "5.0.1"
14+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
15+
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
16+
17+
antlr4ts@^0.5.0-alpha.4:
18+
version "0.5.0-alpha.4"
19+
resolved "https://registry.yarnpkg.com/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz#71702865a87478ed0b40c0709f422cf14d51652a"
20+
integrity sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==
21+
22+
buffer-from@^1.0.0:
23+
version "1.1.2"
24+
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
25+
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
26+
27+
concat-stream@^1.4.7:
28+
version "1.6.2"
29+
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
30+
integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
31+
dependencies:
32+
buffer-from "^1.0.0"
33+
inherits "^2.0.3"
34+
readable-stream "^2.2.2"
35+
typedarray "^0.0.6"
36+
37+
core-util-is@~1.0.0:
38+
version "1.0.3"
39+
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
40+
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
41+
42+
cross-spawn@^5.0.1:
43+
version "5.1.0"
44+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
45+
integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==
46+
dependencies:
47+
lru-cache "^4.0.1"
48+
shebang-command "^1.2.0"
49+
which "^1.2.9"
50+
51+
emoji-regex@^10.0.0:
52+
version "10.1.0"
53+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.1.0.tgz#d50e383743c0f7a5945c47087295afc112e3cf66"
54+
integrity sha512-xAEnNCT3w2Tg6MA7ly6QqYJvEoY1tm9iIjJ3yMKK9JPlWuRHAMoe5iETwQnx3M9TVbFMfsrBgWKR+IsmswwNjg==
55+
56+
emoji-regex@^8.0.0:
57+
version "8.0.0"
58+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
59+
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
60+
61+
escape-string-regexp@^4.0.0:
62+
version "4.0.0"
63+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
64+
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
65+
66+
inherits@^2.0.3, inherits@~2.0.3:
67+
version "2.0.4"
68+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
69+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
70+
71+
is-fullwidth-code-point@^3.0.0:
72+
version "3.0.0"
73+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
74+
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
75+
76+
isarray@~1.0.0:
77+
version "1.0.0"
78+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
79+
integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
80+
81+
isexe@^2.0.0:
82+
version "2.0.0"
83+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
84+
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
85+
86+
lru-cache@^4.0.1:
87+
version "4.1.5"
88+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
89+
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
90+
dependencies:
91+
pseudomap "^1.0.2"
92+
yallist "^2.1.2"
93+
94+
lru-cache@^6.0.0:
95+
version "6.0.0"
96+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
97+
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
98+
dependencies:
99+
yallist "^4.0.0"
100+
101+
os-shim@^0.1.2:
102+
version "0.1.3"
103+
resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917"
104+
integrity sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==
105+
106+
pre-commit@^1.2.2:
107+
version "1.2.2"
108+
resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6"
109+
integrity sha512-qokTiqxD6GjODy5ETAIgzsRgnBWWQHQH2ghy86PU7mIn/wuWeTwF3otyNQZxWBwVn8XNr8Tdzj/QfUXpH+gRZA==
110+
dependencies:
111+
cross-spawn "^5.0.1"
112+
spawn-sync "^1.0.15"
113+
which "1.2.x"
114+
115+
prettier-plugin-solidity@^1.0.0-beta.13:
116+
version "1.0.0-beta.19"
117+
resolved "https://registry.yarnpkg.com/prettier-plugin-solidity/-/prettier-plugin-solidity-1.0.0-beta.19.tgz#7c3607fc4028f5e6a425259ff03e45eedf733df3"
118+
integrity sha512-xxRQ5ZiiZyUoMFLE9h7HnUDXI/daf1tnmL1msEdcKmyh7ZGQ4YklkYLC71bfBpYU2WruTb5/SFLUaEb3RApg5g==
119+
dependencies:
120+
"@solidity-parser/parser" "^0.14.0"
121+
emoji-regex "^10.0.0"
122+
escape-string-regexp "^4.0.0"
123+
semver "^7.3.5"
124+
solidity-comments-extractor "^0.0.7"
125+
string-width "^4.2.3"
126+
127+
prettier@^2.3.1:
128+
version "2.7.1"
129+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
130+
integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
131+
132+
process-nextick-args@~2.0.0:
133+
version "2.0.1"
134+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
135+
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
136+
137+
pseudomap@^1.0.2:
138+
version "1.0.2"
139+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
140+
integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==
141+
142+
readable-stream@^2.2.2:
143+
version "2.3.7"
144+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
145+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
146+
dependencies:
147+
core-util-is "~1.0.0"
148+
inherits "~2.0.3"
149+
isarray "~1.0.0"
150+
process-nextick-args "~2.0.0"
151+
safe-buffer "~5.1.1"
152+
string_decoder "~1.1.1"
153+
util-deprecate "~1.0.1"
154+
155+
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
156+
version "5.1.2"
157+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
158+
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
159+
160+
semver@^7.3.5:
161+
version "7.3.7"
162+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
163+
integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
164+
dependencies:
165+
lru-cache "^6.0.0"
166+
167+
shebang-command@^1.2.0:
168+
version "1.2.0"
169+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
170+
integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
171+
dependencies:
172+
shebang-regex "^1.0.0"
173+
174+
shebang-regex@^1.0.0:
175+
version "1.0.0"
176+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
177+
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
178+
179+
solidity-comments-extractor@^0.0.7:
180+
version "0.0.7"
181+
resolved "https://registry.yarnpkg.com/solidity-comments-extractor/-/solidity-comments-extractor-0.0.7.tgz#99d8f1361438f84019795d928b931f4e5c39ca19"
182+
integrity sha512-wciNMLg/Irp8OKGrh3S2tfvZiZ0NEyILfcRCXCD4mp7SgK/i9gzLfhY2hY7VMCQJ3kH9UB9BzNdibIVMchzyYw==
183+
184+
spawn-sync@^1.0.15:
185+
version "1.0.15"
186+
resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
187+
integrity sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==
188+
dependencies:
189+
concat-stream "^1.4.7"
190+
os-shim "^0.1.2"
191+
192+
string-width@^4.2.3:
193+
version "4.2.3"
194+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
195+
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
196+
dependencies:
197+
emoji-regex "^8.0.0"
198+
is-fullwidth-code-point "^3.0.0"
199+
strip-ansi "^6.0.1"
200+
201+
string_decoder@~1.1.1:
202+
version "1.1.1"
203+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
204+
integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
205+
dependencies:
206+
safe-buffer "~5.1.0"
207+
208+
strip-ansi@^6.0.1:
209+
version "6.0.1"
210+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
211+
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
212+
dependencies:
213+
ansi-regex "^5.0.1"
214+
215+
typedarray@^0.0.6:
216+
version "0.0.6"
217+
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
218+
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
219+
220+
util-deprecate@~1.0.1:
221+
version "1.0.2"
222+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
223+
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
224+
225+
which@1.2.x:
226+
version "1.2.14"
227+
resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
228+
integrity sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==
229+
dependencies:
230+
isexe "^2.0.0"
231+
232+
which@^1.2.9:
233+
version "1.3.1"
234+
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
235+
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
236+
dependencies:
237+
isexe "^2.0.0"
238+
239+
yallist@^2.1.2:
240+
version "2.1.2"
241+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
242+
integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==
243+
244+
yallist@^4.0.0:
245+
version "4.0.0"
246+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
247+
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==

0 commit comments

Comments
 (0)
Please sign in to comment.