Skip to content

Commit f12b735

Browse files
committed
chore: update prettier
1 parent f560674 commit f12b735

File tree

5 files changed

+174
-9
lines changed

5 files changed

+174
-9
lines changed

frontend/.prettierrc

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"semi": true,
3-
"trailingComma": "all",
4-
"singleQuote": true,
5-
"printWidth": 120,
3+
"printWidth": 140,
64
"tabWidth": 2,
7-
"endOfLine": "lf"
8-
}
5+
"singleQuote": true,
6+
"bracketSpacing": true,
7+
"useTabs": false,
8+
"arrowParens": "avoid",
9+
"jsxSingleQuote": true,
10+
"trailingComma": "all",
11+
"endOfLine": "auto"
12+
}

frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"firebase": "^10.3.1",
2323
"next": "13.4.19",
2424
"postcss": "8.4.29",
25+
"prettier-plugin-tailwindcss": "^0.5.4",
2526
"react": "18.2.0",
2627
"react-dom": "18.2.0",
2728
"react-icons": "^4.11.0",

frontend/prettier.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
plugins: ['prettier-plugin-tailwindcss'],
3+
}

frontend/src/app/layout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export default function RootLayout({
3131
if (typeof window !== "undefined") {
3232
const analytics = getAnalytics(app);
3333
}
34-
};
3534

3635
return (
3736
<html lang="en" data-theme="myTheme">
@@ -41,4 +40,4 @@ export default function RootLayout({
4140
</body>
4241
</html>
4342
);
44-
}
43+
};

frontend/yarn.lock

Lines changed: 160 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
dependencies:
2727
eslint-visitor-keys "^3.3.0"
2828

29-
"@eslint-community/regexpp@^4.6.1":
29+
"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1":
3030
version "4.8.1"
3131
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.1.tgz#8c4bb756cc2aa7eaf13cfa5e69c83afb3260c20c"
3232
integrity sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==
@@ -635,6 +635,11 @@
635635
dependencies:
636636
tslib "^2.4.0"
637637

638+
"@types/json-schema@^7.0.9":
639+
version "7.0.12"
640+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
641+
integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
642+
638643
"@types/json5@^0.0.29":
639644
version "0.0.29"
640645
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
@@ -671,6 +676,27 @@
671676
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5"
672677
integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==
673678

679+
"@types/semver@^7.3.12":
680+
version "7.5.1"
681+
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.1.tgz#0480eeb7221eb9bc398ad7432c9d7e14b1a5a367"
682+
integrity sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==
683+
684+
"@typescript-eslint/eslint-plugin@^5.43.0":
685+
version "5.62.0"
686+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db"
687+
integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==
688+
dependencies:
689+
"@eslint-community/regexpp" "^4.4.0"
690+
"@typescript-eslint/scope-manager" "5.62.0"
691+
"@typescript-eslint/type-utils" "5.62.0"
692+
"@typescript-eslint/utils" "5.62.0"
693+
debug "^4.3.4"
694+
graphemer "^1.4.0"
695+
ignore "^5.2.0"
696+
natural-compare-lite "^1.4.0"
697+
semver "^7.3.7"
698+
tsutils "^3.21.0"
699+
674700
"@typescript-eslint/parser@^5.4.2 || ^6.0.0":
675701
version "6.7.0"
676702
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.0.tgz#332fe9c7ecf6783d3250b4c8a960bd4af0995807"
@@ -682,6 +708,24 @@
682708
"@typescript-eslint/visitor-keys" "6.7.0"
683709
debug "^4.3.4"
684710

711+
"@typescript-eslint/parser@^5.43.0":
712+
version "5.62.0"
713+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7"
714+
integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==
715+
dependencies:
716+
"@typescript-eslint/scope-manager" "5.62.0"
717+
"@typescript-eslint/types" "5.62.0"
718+
"@typescript-eslint/typescript-estree" "5.62.0"
719+
debug "^4.3.4"
720+
721+
"@typescript-eslint/[email protected]":
722+
version "5.62.0"
723+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c"
724+
integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==
725+
dependencies:
726+
"@typescript-eslint/types" "5.62.0"
727+
"@typescript-eslint/visitor-keys" "5.62.0"
728+
685729
"@typescript-eslint/[email protected]":
686730
version "6.7.0"
687731
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz#6b3c22187976e2bf5ed0dc0d9095f1f2cbd1d106"
@@ -690,11 +734,39 @@
690734
"@typescript-eslint/types" "6.7.0"
691735
"@typescript-eslint/visitor-keys" "6.7.0"
692736

737+
"@typescript-eslint/[email protected]":
738+
version "5.62.0"
739+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a"
740+
integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==
741+
dependencies:
742+
"@typescript-eslint/typescript-estree" "5.62.0"
743+
"@typescript-eslint/utils" "5.62.0"
744+
debug "^4.3.4"
745+
tsutils "^3.21.0"
746+
747+
"@typescript-eslint/[email protected]":
748+
version "5.62.0"
749+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
750+
integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
751+
693752
"@typescript-eslint/[email protected]":
694753
version "6.7.0"
695754
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.0.tgz#8de8ba9cafadc38e89003fe303e219c9250089ae"
696755
integrity sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==
697756

757+
"@typescript-eslint/[email protected]":
758+
version "5.62.0"
759+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
760+
integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==
761+
dependencies:
762+
"@typescript-eslint/types" "5.62.0"
763+
"@typescript-eslint/visitor-keys" "5.62.0"
764+
debug "^4.3.4"
765+
globby "^11.1.0"
766+
is-glob "^4.0.3"
767+
semver "^7.3.7"
768+
tsutils "^3.21.0"
769+
698770
"@typescript-eslint/[email protected]":
699771
version "6.7.0"
700772
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz#20ce2801733bd46f02cc0f141f5b63fbbf2afb63"
@@ -708,6 +780,28 @@
708780
semver "^7.5.4"
709781
ts-api-utils "^1.0.1"
710782

783+
"@typescript-eslint/[email protected]":
784+
version "5.62.0"
785+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86"
786+
integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==
787+
dependencies:
788+
"@eslint-community/eslint-utils" "^4.2.0"
789+
"@types/json-schema" "^7.0.9"
790+
"@types/semver" "^7.3.12"
791+
"@typescript-eslint/scope-manager" "5.62.0"
792+
"@typescript-eslint/types" "5.62.0"
793+
"@typescript-eslint/typescript-estree" "5.62.0"
794+
eslint-scope "^5.1.1"
795+
semver "^7.3.7"
796+
797+
"@typescript-eslint/[email protected]":
798+
version "5.62.0"
799+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
800+
integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==
801+
dependencies:
802+
"@typescript-eslint/types" "5.62.0"
803+
eslint-visitor-keys "^3.3.0"
804+
711805
"@typescript-eslint/[email protected]":
712806
version "6.7.0"
713807
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.0.tgz#34140ac76dfb6316d17012e4469acf3366ad3f44"
@@ -1271,6 +1365,11 @@ [email protected]:
12711365
eslint-plugin-react "^7.31.7"
12721366
eslint-plugin-react-hooks "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
12731367

1368+
eslint-config-prettier@^8.5.0:
1369+
version "8.10.0"
1370+
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
1371+
integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
1372+
12741373
eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7:
12751374
version "0.3.9"
12761375
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac"
@@ -1345,6 +1444,13 @@ eslint-plugin-jsx-a11y@^6.5.1:
13451444
object.fromentries "^2.0.6"
13461445
semver "^6.3.0"
13471446

1447+
eslint-plugin-prettier@^4.2.1:
1448+
version "4.2.1"
1449+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
1450+
integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
1451+
dependencies:
1452+
prettier-linter-helpers "^1.0.0"
1453+
13481454
"eslint-plugin-react-hooks@^4.5.0 || 5.0.0-canary-7118f5dd7-20230705":
13491455
version "4.6.0"
13501456
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
@@ -1372,6 +1478,14 @@ eslint-plugin-react@^7.31.7:
13721478
semver "^6.3.1"
13731479
string.prototype.matchall "^4.0.8"
13741480

1481+
eslint-scope@^5.1.1:
1482+
version "5.1.1"
1483+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
1484+
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
1485+
dependencies:
1486+
esrecurse "^4.3.0"
1487+
estraverse "^4.1.1"
1488+
13751489
eslint-scope@^7.2.2:
13761490
version "7.2.2"
13771491
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
@@ -1451,6 +1565,11 @@ esrecurse@^4.3.0:
14511565
dependencies:
14521566
estraverse "^5.2.0"
14531567

1568+
estraverse@^4.1.1:
1569+
version "4.3.0"
1570+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1571+
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
1572+
14541573
estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
14551574
version "5.3.0"
14561575
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
@@ -1466,6 +1585,11 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
14661585
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
14671586
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
14681587

1588+
fast-diff@^1.1.2:
1589+
version "1.3.0"
1590+
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0"
1591+
integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
1592+
14691593
fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.1:
14701594
version "3.3.1"
14711595
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
@@ -2207,6 +2331,11 @@ nanoid@^3.3.4, nanoid@^3.3.6:
22072331
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
22082332
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
22092333

2334+
natural-compare-lite@^1.4.0:
2335+
version "1.4.0"
2336+
resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
2337+
integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
2338+
22102339
natural-compare@^1.4.0:
22112340
version "1.4.0"
22122341
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -2485,6 +2614,23 @@ prelude-ls@^1.2.1:
24852614
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
24862615
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
24872616

2617+
prettier-linter-helpers@^1.0.0:
2618+
version "1.0.0"
2619+
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
2620+
integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
2621+
dependencies:
2622+
fast-diff "^1.1.2"
2623+
2624+
prettier-plugin-tailwindcss@^0.5.4:
2625+
version "0.5.4"
2626+
resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.4.tgz#ebfacbcb90e2ca1df671ffe4083e99f81d72040d"
2627+
integrity sha512-QZzzB1bID6qPsKHTeA9qPo1APmmxfFrA5DD3LQ+vbTmAnY40eJI7t9Q1ocqel2EKMWNPLJqdTDWZj1hKYgqSgg==
2628+
2629+
prettier@^2.7.1:
2630+
version "2.8.8"
2631+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
2632+
integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
2633+
24882634
prop-types@^15.8.1:
24892635
version "15.8.1"
24902636
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
@@ -2675,7 +2821,7 @@ semver@^6.3.0, semver@^6.3.1:
26752821
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
26762822
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
26772823

2678-
semver@^7.5.4:
2824+
semver@^7.3.7, semver@^7.5.4:
26792825
version "7.5.4"
26802826
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
26812827
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
@@ -2901,11 +3047,23 @@ tsconfig-paths@^3.14.2:
29013047
minimist "^1.2.6"
29023048
strip-bom "^3.0.0"
29033049

3050+
tslib@^1.8.1:
3051+
version "1.14.1"
3052+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
3053+
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
3054+
29043055
tslib@^2.1.0, tslib@^2.4.0:
29053056
version "2.6.2"
29063057
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
29073058
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
29083059

3060+
tsutils@^3.21.0:
3061+
version "3.21.0"
3062+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
3063+
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
3064+
dependencies:
3065+
tslib "^1.8.1"
3066+
29093067
type-check@^0.4.0, type-check@~0.4.0:
29103068
version "0.4.0"
29113069
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"

0 commit comments

Comments
 (0)