Skip to content

Commit 450ccea

Browse files
committed
fix: add dep
1 parent 0556b8e commit 450ccea

File tree

2 files changed

+160
-4
lines changed

2 files changed

+160
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"wasm-vips": "^0.0.7"
7171
},
7272
"devDependencies": {
73+
"@actions/github": "^6.0.0",
7374
"@linaria/rollup": "^5.0.4",
7475
"@tauri-apps/cli": "^1.5.9",
7576
"@types/color-convert": "^2.0.3",

yarn.lock

Lines changed: 159 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@
1515
resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
1616
integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
1717

18+
"@actions/github@^6.0.0":
19+
version "6.0.0"
20+
resolved "https://registry.yarnpkg.com/@actions/github/-/github-6.0.0.tgz#65883433f9d81521b782a64cc1fd45eef2191ea7"
21+
integrity sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==
22+
dependencies:
23+
"@actions/http-client" "^2.2.0"
24+
"@octokit/core" "^5.0.1"
25+
"@octokit/plugin-paginate-rest" "^9.0.0"
26+
"@octokit/plugin-rest-endpoint-methods" "^10.0.0"
27+
28+
"@actions/http-client@^2.2.0":
29+
version "2.2.1"
30+
resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-2.2.1.tgz#ed3fe7a5a6d317ac1d39886b0bb999ded229bb38"
31+
integrity sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==
32+
dependencies:
33+
tunnel "^0.0.6"
34+
undici "^5.25.4"
35+
1836
"@ampproject/remapping@^2.2.0":
1937
version "2.2.1"
2038
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
@@ -1142,6 +1160,11 @@
11421160
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b"
11431161
integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==
11441162

1163+
"@fastify/busboy@^2.0.0":
1164+
version "2.1.1"
1165+
resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.1.tgz#b9da6a878a371829a0502c9b6c1c143ef6663f4d"
1166+
integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==
1167+
11451168
"@floating-ui/core@^1.0.0":
11461169
version "1.6.0"
11471170
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.0.tgz#fa41b87812a16bf123122bf945946bae3fdf7fc1"
@@ -1498,6 +1521,86 @@
14981521
"@nodelib/fs.scandir" "2.1.5"
14991522
fastq "^1.6.0"
15001523

1524+
"@octokit/auth-token@^4.0.0":
1525+
version "4.0.0"
1526+
resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-4.0.0.tgz#40d203ea827b9f17f42a29c6afb93b7745ef80c7"
1527+
integrity sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==
1528+
1529+
"@octokit/core@^5.0.1":
1530+
version "5.1.0"
1531+
resolved "https://registry.yarnpkg.com/@octokit/core/-/core-5.1.0.tgz#81dacf0197ed7855e6413f128bd6dd9e121e7d2f"
1532+
integrity sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==
1533+
dependencies:
1534+
"@octokit/auth-token" "^4.0.0"
1535+
"@octokit/graphql" "^7.0.0"
1536+
"@octokit/request" "^8.0.2"
1537+
"@octokit/request-error" "^5.0.0"
1538+
"@octokit/types" "^12.0.0"
1539+
before-after-hook "^2.2.0"
1540+
universal-user-agent "^6.0.0"
1541+
1542+
"@octokit/endpoint@^9.0.0":
1543+
version "9.0.4"
1544+
resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-9.0.4.tgz#8afda5ad1ffc3073d08f2b450964c610b821d1ea"
1545+
integrity sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==
1546+
dependencies:
1547+
"@octokit/types" "^12.0.0"
1548+
universal-user-agent "^6.0.0"
1549+
1550+
"@octokit/graphql@^7.0.0":
1551+
version "7.0.2"
1552+
resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-7.0.2.tgz#3df14b9968192f9060d94ed9e3aa9780a76e7f99"
1553+
integrity sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==
1554+
dependencies:
1555+
"@octokit/request" "^8.0.1"
1556+
"@octokit/types" "^12.0.0"
1557+
universal-user-agent "^6.0.0"
1558+
1559+
"@octokit/openapi-types@^20.0.0":
1560+
version "20.0.0"
1561+
resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-20.0.0.tgz#9ec2daa0090eeb865ee147636e0c00f73790c6e5"
1562+
integrity sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==
1563+
1564+
"@octokit/plugin-paginate-rest@^9.0.0":
1565+
version "9.2.1"
1566+
resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.1.tgz#2e2a2f0f52c9a4b1da1a3aa17dabe3c459b9e401"
1567+
integrity sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==
1568+
dependencies:
1569+
"@octokit/types" "^12.6.0"
1570+
1571+
"@octokit/plugin-rest-endpoint-methods@^10.0.0":
1572+
version "10.4.1"
1573+
resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-10.4.1.tgz#41ba478a558b9f554793075b2e20cd2ef973be17"
1574+
integrity sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==
1575+
dependencies:
1576+
"@octokit/types" "^12.6.0"
1577+
1578+
"@octokit/request-error@^5.0.0":
1579+
version "5.0.1"
1580+
resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-5.0.1.tgz#277e3ce3b540b41525e07ba24c5ef5e868a72db9"
1581+
integrity sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==
1582+
dependencies:
1583+
"@octokit/types" "^12.0.0"
1584+
deprecation "^2.0.0"
1585+
once "^1.4.0"
1586+
1587+
"@octokit/request@^8.0.1", "@octokit/request@^8.0.2":
1588+
version "8.2.0"
1589+
resolved "https://registry.yarnpkg.com/@octokit/request/-/request-8.2.0.tgz#125c547bc3f4c0e2dfa38c6829a1cf00027fbd98"
1590+
integrity sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==
1591+
dependencies:
1592+
"@octokit/endpoint" "^9.0.0"
1593+
"@octokit/request-error" "^5.0.0"
1594+
"@octokit/types" "^12.0.0"
1595+
universal-user-agent "^6.0.0"
1596+
1597+
"@octokit/types@^12.0.0", "@octokit/types@^12.6.0":
1598+
version "12.6.0"
1599+
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-12.6.0.tgz#8100fb9eeedfe083aae66473bd97b15b62aedcb2"
1600+
integrity sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==
1601+
dependencies:
1602+
"@octokit/openapi-types" "^20.0.0"
1603+
15011604
"@pkgjs/parseargs@^0.11.0":
15021605
version "0.11.0"
15031606
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
@@ -2677,6 +2780,11 @@ bcp-47-match@^2.0.0:
26772780
resolved "https://registry.yarnpkg.com/bcp-47-match/-/bcp-47-match-2.0.3.tgz#603226f6e5d3914a581408be33b28a53144b09d0"
26782781
integrity sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==
26792782

2783+
before-after-hook@^2.2.0:
2784+
version "2.2.3"
2785+
resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c"
2786+
integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==
2787+
26802788
big-integer@1.6.22:
26812789
version "1.6.22"
26822790
resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.22.tgz#487c95fce886022ea48ff5f19e388932df46dd2e"
@@ -3237,6 +3345,11 @@ delegates@^1.0.0:
32373345
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
32383346
integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
32393347

3348+
deprecation@^2.0.0:
3349+
version "2.3.1"
3350+
resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
3351+
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
3352+
32403353
dequal@^2.0.0, dequal@^2.0.3:
32413354
version "2.0.3"
32423355
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
@@ -5825,7 +5938,7 @@ object.values@^1.1.6, object.values@^1.1.7:
58255938
define-properties "^1.2.0"
58265939
es-abstract "^1.22.1"
58275940

5828-
once@^1.3.0, once@^1.3.1:
5941+
once@^1.3.0, once@^1.3.1, once@^1.4.0:
58295942
version "1.4.0"
58305943
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
58315944
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
@@ -6962,7 +7075,16 @@ string-to-stream@^3.0.1:
69627075
dependencies:
69637076
readable-stream "^3.4.0"
69647077

6965-
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
7078+
"string-width-cjs@npm:string-width@^4.2.0":
7079+
version "4.2.3"
7080+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
7081+
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
7082+
dependencies:
7083+
emoji-regex "^8.0.0"
7084+
is-fullwidth-code-point "^3.0.0"
7085+
strip-ansi "^6.0.1"
7086+
7087+
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
69667088
version "4.2.3"
69677089
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
69687090
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -7037,7 +7159,14 @@ stringify-entities@^4.0.0:
70377159
character-entities-html4 "^2.0.0"
70387160
character-entities-legacy "^3.0.0"
70397161

7040-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
7162+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
7163+
version "6.0.1"
7164+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
7165+
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
7166+
dependencies:
7167+
ansi-regex "^5.0.1"
7168+
7169+
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
70417170
version "6.0.1"
70427171
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
70437172
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -7286,6 +7415,11 @@ tslib@^2.0.0, tslib@^2.1.0, tslib@^2.6.2:
72867415
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
72877416
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
72887417

7418+
tunnel@^0.0.6:
7419+
version "0.0.6"
7420+
resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c"
7421+
integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==
7422+
72897423
type-check@^0.4.0, type-check@~0.4.0:
72907424
version "0.4.0"
72917425
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
@@ -7395,6 +7529,13 @@ undici-types@~5.26.4:
73957529
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
73967530
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
73977531

7532+
undici@^5.25.4:
7533+
version "5.28.3"
7534+
resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.3.tgz#a731e0eff2c3fcfd41c1169a869062be222d1e5b"
7535+
integrity sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==
7536+
dependencies:
7537+
"@fastify/busboy" "^2.0.0"
7538+
73987539
unicode-canonical-property-names-ecmascript@^2.0.0:
73997540
version "2.0.0"
74007541
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -7502,6 +7643,11 @@ unist-util-visit@^5.0.0, unist-util-visit@~5.0.0:
75027643
unist-util-is "^6.0.0"
75037644
unist-util-visit-parents "^6.0.0"
75047645

7646+
universal-user-agent@^6.0.0:
7647+
version "6.0.1"
7648+
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa"
7649+
integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==
7650+
75057651
universalify@^2.0.0:
75067652
version "2.0.1"
75077653
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d"
@@ -7771,7 +7917,7 @@ wordwrapjs@^5.1.0:
77717917
resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-5.1.0.tgz#4c4d20446dcc670b14fa115ef4f8fd9947af2b3a"
77727918
integrity sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==
77737919

7774-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
7920+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
77757921
version "7.0.0"
77767922
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
77777923
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -7789,6 +7935,15 @@ wrap-ansi@^6.2.0:
77897935
string-width "^4.1.0"
77907936
strip-ansi "^6.0.0"
77917937

7938+
wrap-ansi@^7.0.0:
7939+
version "7.0.0"
7940+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
7941+
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
7942+
dependencies:
7943+
ansi-styles "^4.0.0"
7944+
string-width "^4.1.0"
7945+
strip-ansi "^6.0.0"
7946+
77927947
wrap-ansi@^8.1.0:
77937948
version "8.1.0"
77947949
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)