Skip to content

Commit fcb3b48

Browse files
Laegelamrbashir
andauthored
fix: #1512 (#1517)
* fix: Export * chore(changefile) * fix: Updated publish step * fix: Also outputting CommonJS * fix:`preparePublish` now copies the necessary files * fix: typo Co-authored-by: Laegel <valentin.chouaf@laposte.net> * chore: update `build` script * chore: add `prepublishOnly script` * chore: update `api` covector config * round two, fight!! Co-authored-by: amrbashir <48618675+amrbashir@users.noreply.github.com>
1 parent edab7a6 commit fcb3b48

8 files changed

Lines changed: 195 additions & 33 deletions

File tree

.changes/config.json

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,62 @@
146146
"manager": "javascript",
147147
"assets": [
148148
{
149-
"path": "./tooling/api/tauri-apps-api-${ pkgFile.version }.tgz",
149+
"path": "./tooling/api/dist/tauri-apps-api-${ pkgFile.version }.tgz",
150150
"name": "api-${ pkgFile.version }.tgz"
151151
}
152+
],
153+
"prepublish": [
154+
{
155+
"command": "yarn",
156+
"dryRunCommand": true
157+
},
158+
{
159+
"command": "echo \"# Yarn Audit\n\"",
160+
"dryRunCommand": true,
161+
"pipe": true
162+
},
163+
{
164+
"command": "echo \"<details>\n<summary>click to view</summary>\n\n\\`\\`\\`\"",
165+
"dryRunCommand": true,
166+
"pipe": true
167+
},
168+
{
169+
"command": "yarn audit",
170+
"dryRunCommand": true,
171+
"runFromRoot": true,
172+
"pipe": true
173+
},
174+
{
175+
"command": "echo \"\\`\\`\\`\n\n</details>\n\"",
176+
"dryRunCommand": true,
177+
"pipe": true
178+
},
179+
{
180+
"command": "yarn npm-pack",
181+
"dryRunCommand": true
182+
}
183+
],
184+
"publish": [
185+
{
186+
"command": "echo \"# Yarn Package Publish\"",
187+
"dryRunCommand": true,
188+
"pipe": true
189+
},
190+
{
191+
"command": "echo \"\\`\\`\\`\"",
192+
"dryRunCommand": true,
193+
"pipe": true
194+
},
195+
{
196+
"command": "yarn npm-publish",
197+
"dryRunCommand": true,
198+
"pipe": true
199+
},
200+
{
201+
"command": "echo \"\\`\\`\\`\"",
202+
"dryRunCommand": true,
203+
"pipe": true
204+
}
152205
]
153206
},
154207
"tauri-bundler": {

.changes/fix-js-api-import.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": patch
3+
---
4+
5+
TS was wrongly re-exporting the module.

core/tauri/scripts/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"svelte": "3.35.0"
1818
},
1919
"dependencies": {
20-
"@tauri-apps/api": "link:../../tooling/api",
20+
"@tauri-apps/api": "link:../../tooling/api/dist",
2121
"sirv-cli": "1.0.11"
2222
}
23-
}
23+
}

tooling/api/package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,32 @@
22
"name": "@tauri-apps/api",
33
"version": "1.0.0-beta-rc.1",
44
"description": "Tauri API definitions",
5-
"main": "./dist/index.js",
6-
"files": [
7-
"dist"
8-
],
5+
"main": "./index.js",
6+
"typings": "./index.d.ts",
97
"exports": {
10-
".": "./dist/index.js",
11-
"./app": "./dist/app.js",
12-
"./cli": "./dist/cli.js",
13-
"./dialog": "./dist/dialog.js",
14-
"./event": "./dist/event.js",
15-
"./updater": "./dist/updater.js",
16-
"./fs": "./dist/fs.js",
17-
"./path": "./dist/path.js",
18-
"./http": "./dist/http.js",
19-
"./notification": "./dist/notification.js",
20-
"./tauri": "./dist/tauri.js",
21-
"./window": "./dist/window.js",
22-
"./shell": "./dist/shell.js",
23-
"./globalShortcut": "./dist/globalShortcut.js"
8+
".": "./index.js",
9+
"./app": "./app.js",
10+
"./cli": "./cli.js",
11+
"./dialog": "./dialog.js",
12+
"./event": "./event.js",
13+
"./updater": "./updater.js",
14+
"./fs": "./fs.js",
15+
"./path": "./path.js",
16+
"./http": "./http.js",
17+
"./notification": "./notification.js",
18+
"./tauri": "./tauri.js",
19+
"./window": "./window.js",
20+
"./shell": "./shell.js",
21+
"./globalShortcut": "./globalShortcut.js"
2422
},
2523
"funding": {
2624
"type": "opencollective",
2725
"url": "https://opencollective.com/tauri"
2826
},
2927
"scripts": {
30-
"build": "rimraf ./dist && rollup -c --silent",
31-
"prepublishOnly": "yarn build",
28+
"build": "rimraf ./dist && rollup -c --silent && copyfiles package.json LICENSE* CHANGELOG.md dist",
29+
"npm-pack": "yarn build && cd ./dist && npm pack",
30+
"npm-publish": "yarn build && cd ./dist && yarn publish --access public --loglevel silly",
3231
"lint": "eslint --ext ts \"./src/**/*.ts\"",
3332
"lint-fix": "eslint --fix --ext ts \"./src/**/*.ts\"",
3433
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
@@ -68,6 +67,7 @@
6867
"@rollup/plugin-typescript": "8.2.1",
6968
"@typescript-eslint/eslint-plugin": "4.21.0",
7069
"@typescript-eslint/parser": "4.21.0",
70+
"copyfiles": "^2.4.1",
7171
"eslint": "7.23.0",
7272
"eslint-config-prettier": "8.1.0",
7373
"eslint-config-standard-with-typescript": "20.0.0",

tooling/api/rollup.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ export default [
3535
{
3636
dir: 'dist/',
3737
entryFileNames: '[name].js',
38+
format: 'cjs',
39+
exports: 'named',
40+
globals: {}
41+
},
42+
{
43+
dir: 'dist/',
44+
entryFileNames: '[name].mjs',
3845
format: 'esm',
3946
exports: 'named',
4047
globals: {}

tooling/api/src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
22
// SPDX-License-Identifier: Apache-2.0
33
// SPDX-License-Identifier: MIT
4-
5-
import * as api from './bundle'
6-
export default api
4+
export * from './bundle'

tooling/api/yarn.lock

Lines changed: 105 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,6 +1505,19 @@ convert-source-map@^1.7.0:
15051505
dependencies:
15061506
safe-buffer "~5.1.1"
15071507

1508+
copyfiles@^2.4.1:
1509+
version "2.4.1"
1510+
resolved "https://registry.yarnpkg.com/copyfiles/-/copyfiles-2.4.1.tgz#d2dcff60aaad1015f09d0b66e7f0f1c5cd3c5da5"
1511+
integrity sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==
1512+
dependencies:
1513+
glob "^7.0.5"
1514+
minimatch "^3.0.3"
1515+
mkdirp "^1.0.4"
1516+
noms "0.0.0"
1517+
through2 "^2.0.1"
1518+
untildify "^4.0.0"
1519+
yargs "^16.1.0"
1520+
15081521
core-js-compat@^3.8.1, core-js-compat@^3.9.0:
15091522
version "3.9.1"
15101523
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455"
@@ -1513,6 +1526,11 @@ core-js-compat@^3.8.1, core-js-compat@^3.9.0:
15131526
browserslist "^4.16.3"
15141527
semver "7.0.0"
15151528

1529+
core-util-is@~1.0.0:
1530+
version "1.0.2"
1531+
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1532+
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1533+
15161534
cosmiconfig@^6.0.0:
15171535
version "6.0.0"
15181536
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
@@ -1989,7 +2007,7 @@ glob-parent@^5.0.0, glob-parent@^5.1.0:
19892007
dependencies:
19902008
is-glob "^4.0.1"
19912009

1992-
glob@7.1.6, glob@^7.0.0, glob@^7.1.3, glob@^7.1.6:
2010+
glob@7.1.6, glob@^7.0.0, glob@^7.0.5, glob@^7.1.3, glob@^7.1.6:
19932011
version "7.1.6"
19942012
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
19952013
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -2112,7 +2130,7 @@ inflight@^1.0.4:
21122130
once "^1.3.0"
21132131
wrappy "1"
21142132

2115-
inherits@2:
2133+
inherits@2, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3:
21162134
version "2.0.4"
21172135
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
21182136
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -2220,7 +2238,12 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
22202238
dependencies:
22212239
has-symbols "^1.0.1"
22222240

2223-
isarray@^1.0.0:
2241+
isarray@0.0.1:
2242+
version "0.0.1"
2243+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
2244+
integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
2245+
2246+
isarray@^1.0.0, isarray@~1.0.0:
22242247
version "1.0.0"
22252248
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
22262249
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
@@ -2414,7 +2437,7 @@ micromatch@^4.0.2:
24142437
braces "^3.0.1"
24152438
picomatch "^2.0.5"
24162439

2417-
minimatch@^3.0.0, minimatch@^3.0.4:
2440+
minimatch@^3.0.0, minimatch@^3.0.3, minimatch@^3.0.4:
24182441
version "3.0.4"
24192442
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
24202443
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
@@ -2426,6 +2449,11 @@ minimist@^1.2.0, minimist@^1.2.5:
24262449
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
24272450
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
24282451

2452+
mkdirp@^1.0.4:
2453+
version "1.0.4"
2454+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
2455+
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
2456+
24292457
ms@2.0.0:
24302458
version "2.0.0"
24312459
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
@@ -2465,6 +2493,14 @@ node-releases@^1.1.70:
24652493
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"
24662494
integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==
24672495

2496+
noms@0.0.0:
2497+
version "0.0.0"
2498+
resolved "https://registry.yarnpkg.com/noms/-/noms-0.0.0.tgz#da8ebd9f3af9d6760919b27d9cdc8092a7332859"
2499+
integrity sha1-2o69nzr51nYJGbJ9nNyAkqczKFk=
2500+
dependencies:
2501+
inherits "^2.0.1"
2502+
readable-stream "~1.0.31"
2503+
24682504
normalize-package-data@^2.3.2:
24692505
version "2.5.0"
24702506
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -2655,6 +2691,11 @@ prettier@2.2.1:
26552691
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
26562692
integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
26572693

2694+
process-nextick-args@~2.0.0:
2695+
version "2.0.1"
2696+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
2697+
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
2698+
26582699
progress@^2.0.0, progress@^2.0.3:
26592700
version "2.0.3"
26602701
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
@@ -2694,6 +2735,29 @@ read-pkg@^2.0.0:
26942735
normalize-package-data "^2.3.2"
26952736
path-type "^2.0.0"
26962737

2738+
readable-stream@~1.0.31:
2739+
version "1.0.34"
2740+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
2741+
integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=
2742+
dependencies:
2743+
core-util-is "~1.0.0"
2744+
inherits "~2.0.1"
2745+
isarray "0.0.1"
2746+
string_decoder "~0.10.x"
2747+
2748+
readable-stream@~2.3.6:
2749+
version "2.3.7"
2750+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
2751+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
2752+
dependencies:
2753+
core-util-is "~1.0.0"
2754+
inherits "~2.0.3"
2755+
isarray "~1.0.0"
2756+
process-nextick-args "~2.0.0"
2757+
safe-buffer "~5.1.1"
2758+
string_decoder "~1.1.1"
2759+
util-deprecate "~1.0.1"
2760+
26972761
rechoir@^0.6.2:
26982762
version "0.6.2"
26992763
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
@@ -2823,7 +2887,7 @@ safe-buffer@^5.1.0:
28232887
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
28242888
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
28252889

2826-
safe-buffer@~5.1.1:
2890+
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
28272891
version "5.1.2"
28282892
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
28292893
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
@@ -2991,6 +3055,18 @@ string.prototype.trimstart@^1.0.4:
29913055
call-bind "^1.0.2"
29923056
define-properties "^1.1.3"
29933057

3058+
string_decoder@~0.10.x:
3059+
version "0.10.31"
3060+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3061+
integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
3062+
3063+
string_decoder@~1.1.1:
3064+
version "1.1.1"
3065+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3066+
integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
3067+
dependencies:
3068+
safe-buffer "~5.1.0"
3069+
29943070
strip-ansi@^6.0.0:
29953071
version "6.0.0"
29963072
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
@@ -3072,6 +3148,14 @@ thenify-all@^1.0.0:
30723148
dependencies:
30733149
any-promise "^1.0.0"
30743150

3151+
through2@^2.0.1:
3152+
version "2.0.5"
3153+
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
3154+
integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
3155+
dependencies:
3156+
readable-stream "~2.3.6"
3157+
xtend "~4.0.1"
3158+
30753159
to-fast-properties@^2.0.0:
30763160
version "2.0.0"
30773161
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
@@ -3210,13 +3294,23 @@ universalify@^2.0.0:
32103294
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
32113295
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
32123296

3297+
untildify@^4.0.0:
3298+
version "4.0.0"
3299+
resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
3300+
integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
3301+
32133302
uri-js@^4.2.2:
32143303
version "4.4.1"
32153304
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
32163305
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
32173306
dependencies:
32183307
punycode "^2.1.0"
32193308

3309+
util-deprecate@~1.0.1:
3310+
version "1.0.2"
3311+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3312+
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
3313+
32203314
v8-compile-cache@^2.0.3:
32213315
version "2.3.0"
32223316
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
@@ -3277,6 +3371,11 @@ wrappy@1:
32773371
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
32783372
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
32793373

3374+
xtend@~4.0.1:
3375+
version "4.0.2"
3376+
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
3377+
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
3378+
32803379
y18n@^5.0.5:
32813380
version "5.0.5"
32823381
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
@@ -3302,7 +3401,7 @@ yargs-parser@^20.2.2:
33023401
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20"
33033402
integrity sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA==
33043403

3305-
yargs@^16.0.0:
3404+
yargs@^16.0.0, yargs@^16.1.0:
33063405
version "16.2.0"
33073406
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
33083407
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==

0 commit comments

Comments
 (0)