smart-result 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitignore ADDED
@@ -0,0 +1,108 @@
1
+ .idea
2
+ lib
3
+ module
4
+
5
+ # Logs
6
+ logs
7
+ *.log
8
+ npm-debug.log*
9
+ yarn-debug.log*
10
+ yarn-error.log*
11
+ lerna-debug.log*
12
+
13
+ # Diagnostic reports (https://nodejs.org/api/report.html)
14
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15
+
16
+ # Runtime data
17
+ pids
18
+ *.pid
19
+ *.seed
20
+ *.pid.lock
21
+
22
+ # Directory for instrumented libs generated by jscoverage/JSCover
23
+ lib-cov
24
+
25
+ # Coverage directory used by tools like istanbul
26
+ coverage
27
+ *.lcov
28
+
29
+ # nyc test coverage
30
+ .nyc_output
31
+
32
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33
+ .grunt
34
+
35
+ # Bower dependency directory (https://bower.io/)
36
+ bower_components
37
+
38
+ # node-waf configuration
39
+ .lock-wscript
40
+
41
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
42
+ build/Release
43
+
44
+ # Dependency directories
45
+ node_modules/
46
+ jspm_packages/
47
+
48
+ # TypeScript v1 declaration files
49
+ typings/
50
+
51
+ # TypeScript cache
52
+ *.tsbuildinfo
53
+
54
+ # Optional npm cache directory
55
+ .npm
56
+
57
+ # Optional eslint cache
58
+ .eslintcache
59
+
60
+ # Microbundle cache
61
+ .rpt2_cache/
62
+ .rts2_cache_cjs/
63
+ .rts2_cache_es/
64
+ .rts2_cache_umd/
65
+
66
+ # Optional REPL history
67
+ .node_repl_history
68
+
69
+ # Output of 'npm pack'
70
+ *.tgz
71
+
72
+ # Yarn Integrity file
73
+ .yarn-integrity
74
+
75
+ # dotenv environment variables file
76
+ .env
77
+ .env.test
78
+
79
+ # parcel-bundler cache (https://parceljs.org/)
80
+ .cache
81
+
82
+ # Next.js build output
83
+ .next
84
+
85
+ # Nuxt.js build / generate output
86
+ .nuxt
87
+ dist
88
+
89
+ # Gatsby files
90
+ .cache/
91
+ # Comment in the public line in if your project uses Gatsby and *not* Next.js
92
+ # https://nextjs.org/blog/next-9-1#public-directory-support
93
+ # public
94
+
95
+ # vuepress build output
96
+ .vuepress/dist
97
+
98
+ # Serverless directories
99
+ .serverless/
100
+
101
+ # FuseBox cache
102
+ .fusebox/
103
+
104
+ # DynamoDB Local files
105
+ .dynamodb/
106
+
107
+ # TernJS port file
108
+ .tern-port
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ #### 0.0.4 (2024-03-27)
2
+
3
+ ##### Documentation Changes
4
+
5
+ * fix typo ([fea5d1e8](https://github.com/misuken-now/smart-result/commit/fea5d1e8216f8c961032dec14724a314b0ec5807))
6
+
7
+ #### 0.0.3 (2024-03-27)
8
+
9
+ ##### Chores
10
+
11
+ * improve publish target ([920d75d6](https://github.com/misuken-now/smart-result/commit/920d75d67231d2986209289828ca8ea7e8435004))
12
+
13
+ #### 0.0.2 (2024-03-27)
14
+
15
+ ##### Bug Fixes
16
+
17
+ * add publish target ([04d389ec](https://github.com/misuken-now/smart-result/commit/04d389ec500f3e300c52f1badf8898dd9bc05f57))
18
+
19
+ #### 0.0.1 (2024-03-27)
20
+
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  This type library is a very smart result type available in TypeScript 4.6 or later.
4
4
 
5
5
  ```
6
- import type { Reulst } from "smart-result";
6
+ import type { Result } from "smart-result";
7
7
 
8
8
  async function loadData(): Promise<Result<Data, Error>> {
9
9
  try {
@@ -53,7 +53,7 @@ yarn add -D `smart-result`
53
53
  ### Void Pattern
54
54
 
55
55
  ```
56
- import type { Reulst } from "smart-result";
56
+ import type { Result } from "smart-result";
57
57
 
58
58
  async function start(): Promise<Result<true, Error>> {
59
59
  try {
@@ -81,7 +81,7 @@ async function example() {
81
81
  ### Return Data Pattern
82
82
 
83
83
  ```
84
- import type { Reulst } from "smart-result";
84
+ import type { Result } from "smart-result";
85
85
 
86
86
  async function loadData(): Promise<Result<Data, Error>> {
87
87
  try {
@@ -109,7 +109,7 @@ async function example() {
109
109
  ### Return Value Pattern
110
110
 
111
111
  ```
112
- import type { Reulst } from "smart-result";
112
+ import type { Result } from "smart-result";
113
113
 
114
114
  async function loadValue(): Promise<Result<{ value: number }, Error>> {
115
115
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-result",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "yarn clean && tsc -p ./tsconfig.json",
package/src/index.ts ADDED
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Type of the result in case of success.
3
+ *
4
+ * If a string or number is specified directly for ok, it will be judged false if an empty string or 0 is specified, so only true or Record<string, any> can be specified.
5
+ */
6
+ export type OkResult<Data extends true | Record<string, any>> = {
7
+ readonly error?: never;
8
+ // If the result is `{}`, set it to `Record<string, unknown>` to make type resolution work as expected when the result branches.
9
+ readonly ok: [keyof Data] extends [never] ? Record<string, unknown> : Data;
10
+ };
11
+
12
+ /**
13
+ * Type of the result in case of error.
14
+ */
15
+ export type ErrorResult<Error extends Record<string, any>> = { readonly error: Error; readonly ok?: never };
16
+
17
+ /**
18
+ * Object type for easier handling of results.
19
+ *
20
+ * @example If you do not need to return the results.
21
+ * async function foo(): Promise<Result<true, Error>> {
22
+ * try {
23
+ * await bar();
24
+ * return { ok: true };
25
+ * } catch (error) {
26
+ * if (error instanceof Error) {
27
+ * return { error };
28
+ * }
29
+ * return { error: new Error("unknown error") };
30
+ * }
31
+ * }
32
+ *
33
+ * const { ok, error } = await foo();
34
+ * if (ok) {
35
+ * console.log(ok); // ok: true; error: undefined;
36
+ * } else {
37
+ * console.error(error); // ok: undefined; error: Error;
38
+ * }
39
+ *
40
+ * @example If you do need to return the results.
41
+ * async function foo(): Promise<Result<Data, Error>> {
42
+ * try {
43
+ * const response = await bar();
44
+ * return { ok: response.data };
45
+ * } catch (error) {
46
+ * if (error instanceof Error) {
47
+ * return { error };
48
+ * }
49
+ * return { error: new Error("unknown error") };
50
+ * }
51
+ * }
52
+ *
53
+ * const { ok: data, error } = await foo();
54
+ * if (data) {
55
+ * console.log(data); // data: Data; error: undefined;
56
+ * } else {
57
+ * console.error(error); // data: undefined; error: Error;
58
+ * }
59
+ */
60
+ export type Result<Data extends true | Record<string, any>, Error extends Record<string, any>> = OkResult<Data> | ErrorResult<Error>;
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "esnext",
4
+ "module": "esnext",
5
+ "outDir": "./dist",
6
+ "declaration": true,
7
+ "emitDeclarationOnly": true,
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "strict": true
11
+ },
12
+ "include": ["src/**/*.ts"],
13
+ "exclude": ["node_modules"]
14
+ }
package/yarn.lock ADDED
@@ -0,0 +1,733 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ "@babel/code-frame@^7.0.0":
6
+ version "7.24.2"
7
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
8
+ integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==
9
+ dependencies:
10
+ "@babel/highlight" "^7.24.2"
11
+ picocolors "^1.0.0"
12
+
13
+ "@babel/helper-validator-identifier@^7.22.20":
14
+ version "7.22.20"
15
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
16
+ integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
17
+
18
+ "@babel/highlight@^7.24.2":
19
+ version "7.24.2"
20
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26"
21
+ integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==
22
+ dependencies:
23
+ "@babel/helper-validator-identifier" "^7.22.20"
24
+ chalk "^2.4.2"
25
+ js-tokens "^4.0.0"
26
+ picocolors "^1.0.0"
27
+
28
+ "@nodelib/fs.scandir@2.1.5":
29
+ version "2.1.5"
30
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
31
+ integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
32
+ dependencies:
33
+ "@nodelib/fs.stat" "2.0.5"
34
+ run-parallel "^1.1.9"
35
+
36
+ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
37
+ version "2.0.5"
38
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
39
+ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
40
+
41
+ "@nodelib/fs.walk@^1.2.3":
42
+ version "1.2.8"
43
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
44
+ integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
45
+ dependencies:
46
+ "@nodelib/fs.scandir" "2.1.5"
47
+ fastq "^1.6.0"
48
+
49
+ "@types/minimist@^1.2.2":
50
+ version "1.2.5"
51
+ resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e"
52
+ integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==
53
+
54
+ "@types/normalize-package-data@^2.4.0":
55
+ version "2.4.4"
56
+ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901"
57
+ integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==
58
+
59
+ aggregate-error@^3.0.0:
60
+ version "3.1.0"
61
+ resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
62
+ integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
63
+ dependencies:
64
+ clean-stack "^2.0.0"
65
+ indent-string "^4.0.0"
66
+
67
+ ansi-styles@^3.2.1:
68
+ version "3.2.1"
69
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
70
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
71
+ dependencies:
72
+ color-convert "^1.9.0"
73
+
74
+ array-union@^2.1.0:
75
+ version "2.1.0"
76
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
77
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
78
+
79
+ arrify@^1.0.1:
80
+ version "1.0.1"
81
+ resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
82
+ integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==
83
+
84
+ balanced-match@^1.0.0:
85
+ version "1.0.2"
86
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
87
+ integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
88
+
89
+ bluebird@^3.0.6:
90
+ version "3.7.2"
91
+ resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
92
+ integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
93
+
94
+ brace-expansion@^1.1.7:
95
+ version "1.1.11"
96
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
97
+ integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
98
+ dependencies:
99
+ balanced-match "^1.0.0"
100
+ concat-map "0.0.1"
101
+
102
+ braces@^3.0.2:
103
+ version "3.0.2"
104
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
105
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
106
+ dependencies:
107
+ fill-range "^7.0.1"
108
+
109
+ camelcase-keys@^7.0.0:
110
+ version "7.0.2"
111
+ resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-7.0.2.tgz#d048d8c69448745bb0de6fc4c1c52a30dfbe7252"
112
+ integrity sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==
113
+ dependencies:
114
+ camelcase "^6.3.0"
115
+ map-obj "^4.1.0"
116
+ quick-lru "^5.1.1"
117
+ type-fest "^1.2.1"
118
+
119
+ camelcase@^6.3.0:
120
+ version "6.3.0"
121
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
122
+ integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
123
+
124
+ chalk@^2.4.2:
125
+ version "2.4.2"
126
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
127
+ integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
128
+ dependencies:
129
+ ansi-styles "^3.2.1"
130
+ escape-string-regexp "^1.0.5"
131
+ supports-color "^5.3.0"
132
+
133
+ clean-stack@^2.0.0:
134
+ version "2.2.0"
135
+ resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
136
+ integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
137
+
138
+ color-convert@^1.9.0:
139
+ version "1.9.3"
140
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
141
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
142
+ dependencies:
143
+ color-name "1.1.3"
144
+
145
+ color-name@1.1.3:
146
+ version "1.1.3"
147
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
148
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
149
+
150
+ commander@^2.9.0:
151
+ version "2.20.3"
152
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
153
+ integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
154
+
155
+ concat-map@0.0.1:
156
+ version "0.0.1"
157
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
158
+ integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
159
+
160
+ decamelize-keys@^1.1.0:
161
+ version "1.1.1"
162
+ resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
163
+ integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==
164
+ dependencies:
165
+ decamelize "^1.1.0"
166
+ map-obj "^1.0.0"
167
+
168
+ decamelize@^1.1.0:
169
+ version "1.2.0"
170
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
171
+ integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
172
+
173
+ decamelize@^5.0.0:
174
+ version "5.0.1"
175
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-5.0.1.tgz#db11a92e58c741ef339fb0a2868d8a06a9a7b1e9"
176
+ integrity sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==
177
+
178
+ del-cli@^4.0.1:
179
+ version "4.0.1"
180
+ resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-4.0.1.tgz#2303ccaa45708ee8c6211568344cf87336abf30a"
181
+ integrity sha512-KtR/6cBfZkGDAP2NA7z+bP4p1OMob3wjN9mq13+SWvExx6jT9gFWfLgXEeX8J2B47OKeNCq9yTONmtryQ+m+6g==
182
+ dependencies:
183
+ del "^6.0.0"
184
+ meow "^10.1.0"
185
+
186
+ del@^6.0.0:
187
+ version "6.1.1"
188
+ resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a"
189
+ integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==
190
+ dependencies:
191
+ globby "^11.0.1"
192
+ graceful-fs "^4.2.4"
193
+ is-glob "^4.0.1"
194
+ is-path-cwd "^2.2.0"
195
+ is-path-inside "^3.0.2"
196
+ p-map "^4.0.0"
197
+ rimraf "^3.0.2"
198
+ slash "^3.0.0"
199
+
200
+ dir-glob@^3.0.1:
201
+ version "3.0.1"
202
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
203
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
204
+ dependencies:
205
+ path-type "^4.0.0"
206
+
207
+ error-ex@^1.3.1:
208
+ version "1.3.2"
209
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
210
+ integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
211
+ dependencies:
212
+ is-arrayish "^0.2.1"
213
+
214
+ escape-string-regexp@^1.0.5:
215
+ version "1.0.5"
216
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
217
+ integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
218
+
219
+ fast-glob@^3.2.9:
220
+ version "3.3.2"
221
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
222
+ integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
223
+ dependencies:
224
+ "@nodelib/fs.stat" "^2.0.2"
225
+ "@nodelib/fs.walk" "^1.2.3"
226
+ glob-parent "^5.1.2"
227
+ merge2 "^1.3.0"
228
+ micromatch "^4.0.4"
229
+
230
+ fastq@^1.6.0:
231
+ version "1.17.1"
232
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
233
+ integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
234
+ dependencies:
235
+ reusify "^1.0.4"
236
+
237
+ fill-range@^7.0.1:
238
+ version "7.0.1"
239
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
240
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
241
+ dependencies:
242
+ to-regex-range "^5.0.1"
243
+
244
+ find-up@^5.0.0:
245
+ version "5.0.0"
246
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
247
+ integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
248
+ dependencies:
249
+ locate-path "^6.0.0"
250
+ path-exists "^4.0.0"
251
+
252
+ fs.realpath@^1.0.0:
253
+ version "1.0.0"
254
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
255
+ integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
256
+
257
+ function-bind@^1.1.2:
258
+ version "1.1.2"
259
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
260
+ integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
261
+
262
+ generate-changelog@^1.8.0:
263
+ version "1.8.0"
264
+ resolved "https://registry.yarnpkg.com/generate-changelog/-/generate-changelog-1.8.0.tgz#1d788cdef5a13a649da7eb2a1f3b02674850e4a8"
265
+ integrity sha512-msgpxeB75Ziyg3wGsZuPNl7c5RxChMKmYcAX5obnhUow90dBZW3nLic6nxGtst7Bpx453oS6zAIHcX7F3QVasw==
266
+ dependencies:
267
+ bluebird "^3.0.6"
268
+ commander "^2.9.0"
269
+ github-url-from-git "^1.4.0"
270
+
271
+ github-url-from-git@^1.4.0:
272
+ version "1.5.0"
273
+ resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0"
274
+ integrity sha512-WWOec4aRI7YAykQ9+BHmzjyNlkfJFG8QLXnDTsLz/kZefq7qkzdfo4p6fkYYMIq1aj+gZcQs/1HQhQh3DPPxlQ==
275
+
276
+ glob-parent@^5.1.2:
277
+ version "5.1.2"
278
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
279
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
280
+ dependencies:
281
+ is-glob "^4.0.1"
282
+
283
+ glob@^7.1.3:
284
+ version "7.2.3"
285
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
286
+ integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
287
+ dependencies:
288
+ fs.realpath "^1.0.0"
289
+ inflight "^1.0.4"
290
+ inherits "2"
291
+ minimatch "^3.1.1"
292
+ once "^1.3.0"
293
+ path-is-absolute "^1.0.0"
294
+
295
+ globby@^11.0.1:
296
+ version "11.1.0"
297
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
298
+ integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
299
+ dependencies:
300
+ array-union "^2.1.0"
301
+ dir-glob "^3.0.1"
302
+ fast-glob "^3.2.9"
303
+ ignore "^5.2.0"
304
+ merge2 "^1.4.1"
305
+ slash "^3.0.0"
306
+
307
+ graceful-fs@^4.2.4:
308
+ version "4.2.11"
309
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
310
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
311
+
312
+ hard-rejection@^2.1.0:
313
+ version "2.1.0"
314
+ resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
315
+ integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
316
+
317
+ has-flag@^3.0.0:
318
+ version "3.0.0"
319
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
320
+ integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
321
+
322
+ hasown@^2.0.0:
323
+ version "2.0.2"
324
+ resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
325
+ integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
326
+ dependencies:
327
+ function-bind "^1.1.2"
328
+
329
+ hosted-git-info@^4.0.1:
330
+ version "4.1.0"
331
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224"
332
+ integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
333
+ dependencies:
334
+ lru-cache "^6.0.0"
335
+
336
+ ignore@^5.2.0:
337
+ version "5.3.1"
338
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
339
+ integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
340
+
341
+ indent-string@^4.0.0:
342
+ version "4.0.0"
343
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
344
+ integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
345
+
346
+ indent-string@^5.0.0:
347
+ version "5.0.0"
348
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5"
349
+ integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==
350
+
351
+ inflight@^1.0.4:
352
+ version "1.0.6"
353
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
354
+ integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
355
+ dependencies:
356
+ once "^1.3.0"
357
+ wrappy "1"
358
+
359
+ inherits@2:
360
+ version "2.0.4"
361
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
362
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
363
+
364
+ is-arrayish@^0.2.1:
365
+ version "0.2.1"
366
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
367
+ integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
368
+
369
+ is-core-module@^2.5.0:
370
+ version "2.13.1"
371
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
372
+ integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
373
+ dependencies:
374
+ hasown "^2.0.0"
375
+
376
+ is-extglob@^2.1.1:
377
+ version "2.1.1"
378
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
379
+ integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
380
+
381
+ is-glob@^4.0.1:
382
+ version "4.0.3"
383
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
384
+ integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
385
+ dependencies:
386
+ is-extglob "^2.1.1"
387
+
388
+ is-number@^7.0.0:
389
+ version "7.0.0"
390
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
391
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
392
+
393
+ is-path-cwd@^2.2.0:
394
+ version "2.2.0"
395
+ resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
396
+ integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
397
+
398
+ is-path-inside@^3.0.2:
399
+ version "3.0.3"
400
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
401
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
402
+
403
+ is-plain-obj@^1.1.0:
404
+ version "1.1.0"
405
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
406
+ integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
407
+
408
+ js-tokens@^4.0.0:
409
+ version "4.0.0"
410
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
411
+ integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
412
+
413
+ json-parse-even-better-errors@^2.3.0:
414
+ version "2.3.1"
415
+ resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
416
+ integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
417
+
418
+ kind-of@^6.0.3:
419
+ version "6.0.3"
420
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
421
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
422
+
423
+ lines-and-columns@^1.1.6:
424
+ version "1.2.4"
425
+ resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
426
+ integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
427
+
428
+ locate-path@^6.0.0:
429
+ version "6.0.0"
430
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
431
+ integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
432
+ dependencies:
433
+ p-locate "^5.0.0"
434
+
435
+ lru-cache@^6.0.0:
436
+ version "6.0.0"
437
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
438
+ integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
439
+ dependencies:
440
+ yallist "^4.0.0"
441
+
442
+ map-obj@^1.0.0:
443
+ version "1.0.1"
444
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
445
+ integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==
446
+
447
+ map-obj@^4.1.0:
448
+ version "4.3.0"
449
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
450
+ integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
451
+
452
+ meow@^10.1.0:
453
+ version "10.1.5"
454
+ resolved "https://registry.yarnpkg.com/meow/-/meow-10.1.5.tgz#be52a1d87b5f5698602b0f32875ee5940904aa7f"
455
+ integrity sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==
456
+ dependencies:
457
+ "@types/minimist" "^1.2.2"
458
+ camelcase-keys "^7.0.0"
459
+ decamelize "^5.0.0"
460
+ decamelize-keys "^1.1.0"
461
+ hard-rejection "^2.1.0"
462
+ minimist-options "4.1.0"
463
+ normalize-package-data "^3.0.2"
464
+ read-pkg-up "^8.0.0"
465
+ redent "^4.0.0"
466
+ trim-newlines "^4.0.2"
467
+ type-fest "^1.2.2"
468
+ yargs-parser "^20.2.9"
469
+
470
+ merge2@^1.3.0, merge2@^1.4.1:
471
+ version "1.4.1"
472
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
473
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
474
+
475
+ micromatch@^4.0.4:
476
+ version "4.0.5"
477
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
478
+ integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
479
+ dependencies:
480
+ braces "^3.0.2"
481
+ picomatch "^2.3.1"
482
+
483
+ min-indent@^1.0.1:
484
+ version "1.0.1"
485
+ resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
486
+ integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
487
+
488
+ minimatch@^3.1.1:
489
+ version "3.1.2"
490
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
491
+ integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
492
+ dependencies:
493
+ brace-expansion "^1.1.7"
494
+
495
+ minimist-options@4.1.0:
496
+ version "4.1.0"
497
+ resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
498
+ integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
499
+ dependencies:
500
+ arrify "^1.0.1"
501
+ is-plain-obj "^1.1.0"
502
+ kind-of "^6.0.3"
503
+
504
+ normalize-package-data@^3.0.2:
505
+ version "3.0.3"
506
+ resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e"
507
+ integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
508
+ dependencies:
509
+ hosted-git-info "^4.0.1"
510
+ is-core-module "^2.5.0"
511
+ semver "^7.3.4"
512
+ validate-npm-package-license "^3.0.1"
513
+
514
+ once@^1.3.0:
515
+ version "1.4.0"
516
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
517
+ integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
518
+ dependencies:
519
+ wrappy "1"
520
+
521
+ p-limit@^3.0.2:
522
+ version "3.1.0"
523
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
524
+ integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
525
+ dependencies:
526
+ yocto-queue "^0.1.0"
527
+
528
+ p-locate@^5.0.0:
529
+ version "5.0.0"
530
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
531
+ integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
532
+ dependencies:
533
+ p-limit "^3.0.2"
534
+
535
+ p-map@^4.0.0:
536
+ version "4.0.0"
537
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
538
+ integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
539
+ dependencies:
540
+ aggregate-error "^3.0.0"
541
+
542
+ parse-json@^5.2.0:
543
+ version "5.2.0"
544
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
545
+ integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
546
+ dependencies:
547
+ "@babel/code-frame" "^7.0.0"
548
+ error-ex "^1.3.1"
549
+ json-parse-even-better-errors "^2.3.0"
550
+ lines-and-columns "^1.1.6"
551
+
552
+ path-exists@^4.0.0:
553
+ version "4.0.0"
554
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
555
+ integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
556
+
557
+ path-is-absolute@^1.0.0:
558
+ version "1.0.1"
559
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
560
+ integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
561
+
562
+ path-type@^4.0.0:
563
+ version "4.0.0"
564
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
565
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
566
+
567
+ picocolors@^1.0.0:
568
+ version "1.0.0"
569
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
570
+ integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
571
+
572
+ picomatch@^2.3.1:
573
+ version "2.3.1"
574
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
575
+ integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
576
+
577
+ queue-microtask@^1.2.2:
578
+ version "1.2.3"
579
+ resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
580
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
581
+
582
+ quick-lru@^5.1.1:
583
+ version "5.1.1"
584
+ resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
585
+ integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
586
+
587
+ read-pkg-up@^8.0.0:
588
+ version "8.0.0"
589
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-8.0.0.tgz#72f595b65e66110f43b052dd9af4de6b10534670"
590
+ integrity sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==
591
+ dependencies:
592
+ find-up "^5.0.0"
593
+ read-pkg "^6.0.0"
594
+ type-fest "^1.0.1"
595
+
596
+ read-pkg@^6.0.0:
597
+ version "6.0.0"
598
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-6.0.0.tgz#a67a7d6a1c2b0c3cd6aa2ea521f40c458a4a504c"
599
+ integrity sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==
600
+ dependencies:
601
+ "@types/normalize-package-data" "^2.4.0"
602
+ normalize-package-data "^3.0.2"
603
+ parse-json "^5.2.0"
604
+ type-fest "^1.0.1"
605
+
606
+ redent@^4.0.0:
607
+ version "4.0.0"
608
+ resolved "https://registry.yarnpkg.com/redent/-/redent-4.0.0.tgz#0c0ba7caabb24257ab3bb7a4fd95dd1d5c5681f9"
609
+ integrity sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==
610
+ dependencies:
611
+ indent-string "^5.0.0"
612
+ strip-indent "^4.0.0"
613
+
614
+ reusify@^1.0.4:
615
+ version "1.0.4"
616
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
617
+ integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
618
+
619
+ rimraf@^3.0.2:
620
+ version "3.0.2"
621
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
622
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
623
+ dependencies:
624
+ glob "^7.1.3"
625
+
626
+ run-parallel@^1.1.9:
627
+ version "1.2.0"
628
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
629
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
630
+ dependencies:
631
+ queue-microtask "^1.2.2"
632
+
633
+ semver@^7.3.4:
634
+ version "7.6.0"
635
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
636
+ integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
637
+ dependencies:
638
+ lru-cache "^6.0.0"
639
+
640
+ slash@^3.0.0:
641
+ version "3.0.0"
642
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
643
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
644
+
645
+ spdx-correct@^3.0.0:
646
+ version "3.2.0"
647
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
648
+ integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
649
+ dependencies:
650
+ spdx-expression-parse "^3.0.0"
651
+ spdx-license-ids "^3.0.0"
652
+
653
+ spdx-exceptions@^2.1.0:
654
+ version "2.5.0"
655
+ resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66"
656
+ integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==
657
+
658
+ spdx-expression-parse@^3.0.0:
659
+ version "3.0.1"
660
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
661
+ integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
662
+ dependencies:
663
+ spdx-exceptions "^2.1.0"
664
+ spdx-license-ids "^3.0.0"
665
+
666
+ spdx-license-ids@^3.0.0:
667
+ version "3.0.17"
668
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c"
669
+ integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==
670
+
671
+ strip-indent@^4.0.0:
672
+ version "4.0.0"
673
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853"
674
+ integrity sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==
675
+ dependencies:
676
+ min-indent "^1.0.1"
677
+
678
+ supports-color@^5.3.0:
679
+ version "5.5.0"
680
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
681
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
682
+ dependencies:
683
+ has-flag "^3.0.0"
684
+
685
+ to-regex-range@^5.0.1:
686
+ version "5.0.1"
687
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
688
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
689
+ dependencies:
690
+ is-number "^7.0.0"
691
+
692
+ trim-newlines@^4.0.2:
693
+ version "4.1.1"
694
+ resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.1.1.tgz#28c88deb50ed10c7ba6dc2474421904a00139125"
695
+ integrity sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==
696
+
697
+ type-fest@^1.0.1, type-fest@^1.2.1, type-fest@^1.2.2:
698
+ version "1.4.0"
699
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
700
+ integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
701
+
702
+ typescript@^5.4.3:
703
+ version "5.4.3"
704
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
705
+ integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==
706
+
707
+ validate-npm-package-license@^3.0.1:
708
+ version "3.0.4"
709
+ resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
710
+ integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
711
+ dependencies:
712
+ spdx-correct "^3.0.0"
713
+ spdx-expression-parse "^3.0.0"
714
+
715
+ wrappy@1:
716
+ version "1.0.2"
717
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
718
+ integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
719
+
720
+ yallist@^4.0.0:
721
+ version "4.0.0"
722
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
723
+ integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
724
+
725
+ yargs-parser@^20.2.9:
726
+ version "20.2.9"
727
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
728
+ integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
729
+
730
+ yocto-queue@^0.1.0:
731
+ version "0.1.0"
732
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
733
+ integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==