Skip to content

Commit 44b85fa

Browse files
committed
fix metor config and remove picker usage
1 parent 3869c2c commit 44b85fa

File tree

4 files changed

+31
-136
lines changed

4 files changed

+31
-136
lines changed

examples/ReactNativeBlobUtil/App.js

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import React, {useState} from 'react';
1010
import {Alert, Button, SafeAreaView, ScrollView, StatusBar, StyleSheet, Text, TextInput, View} from 'react-native';
11-
import {Picker} from '@react-native-picker/picker';
11+
// import {Picker} from '@react-native-picker/picker'; Need to remove this package as it is not supported in Windows New Architecture
1212

1313
import {Colors} from 'react-native/Libraries/NewAppScreen';
1414

@@ -608,14 +608,6 @@ const App: () => React$Node = () => {
608608
<Text style={styles.sectionTitle}>{'Hash - hash()'}</Text>
609609
<View style={styles.sectionDescription}>
610610
<TextInput style={styles.input} placeholder="Source path" onChangeText={(hashPathParam) => setHashPathParam(hashPathParam)} placeholderTextColor="#9a73ef" autoCapitalize="none" />
611-
<Picker hashAlgValue={hashAlgValue} onChangeText={(readPositionParam) => setReadPositionParam(readPositionParam)} style={{height: 50, width: 150}} onValueChange={(itemValue, itemIndex) => setHashAlgValue(itemValue)}>
612-
<Picker.Item label="MD5" value="md5" />
613-
<Picker.Item label="SHA1" value="sha1" />
614-
<Picker.Item label="SHA224" value="sha224" />
615-
<Picker.Item label="SHA256" value="sha256" />
616-
<Picker.Item label="SHA384" value="sha384" />
617-
<Picker.Item label="SHA512" value="sha512" />
618-
</Picker>
619611
</View>
620612
<Button title="Hash File" color="#9a73ef" onPress={hashCall} />
621613
</View>
@@ -627,12 +619,6 @@ const App: () => React$Node = () => {
627619
<View style={styles.sectionDescription}>
628620
<TextInput style={styles.input} placeholder="Source path" onChangeText={(writeParam) => setWriteParam(writeParam)} placeholderTextColor="#9a73ef" autoCapitalize="none" />
629621
<TextInput style={styles.input} placeholder="Source path" onChangeText={(writeURIParam) => setWriteURIParam(writeURIParam)} placeholderTextColor="#9a73ef" autoCapitalize="none" />
630-
<Picker writeEncodeStreamParam={writeEncodeParam} onChangeText={(readPositionParam) => setReadPositionParam(readPositionParam)} style={{height: 50, width: 150}} onValueChange={(itemValue, itemIndex) => setWriteEncodeParam(itemValue)}>
631-
<Picker.Item label="UTF8" value="utf8" />
632-
<Picker.Item label="Base64" value="base64" />
633-
<Picker.Item label="ASCII" value="ascii" />
634-
<Picker.Item label="URI" value="uri" />
635-
</Picker>
636622
</View>
637623
<Button title="Write" color="#9a73ef" onPress={writeFileCall} />
638624
<Button title="Append" color="#9a73ef" onPress={appendFileCall} />
@@ -644,12 +630,6 @@ const App: () => React$Node = () => {
644630
<Text style={styles.sectionTitle}>{'WriteStream - writeStream()'}</Text>
645631
<View style={styles.sectionDescription}>
646632
<TextInput style={styles.input} placeholder="Source path" onChangeText={(writeStreamParam) => setWriteStreamParam(writeStreamParam)} placeholderTextColor="#9a73ef" autoCapitalize="none" />
647-
648-
<Picker writeEncodeStreamParam={writeEncodeStreamParam} onChangeText={(readPositionParam) => setReadPositionParam(readPositionParam)} style={{height: 50, width: 150}} onValueChange={(itemValue, itemIndex) => setWriteStreamEncodeParam(itemValue)}>
649-
<Picker.Item label="UTF8" value="utf8" />
650-
<Picker.Item label="Base64" value="base64" />
651-
<Picker.Item label="ASCII" value="ascii" />
652-
</Picker>
653633
</View>
654634
<Button title="Write" color="#9a73ef" onPress={writeStreamCall} />
655635
<Button title="Append" color="#9a73ef" onPress={appendStreamCall} />
@@ -661,12 +641,6 @@ const App: () => React$Node = () => {
661641
<Text style={styles.sectionTitle}>{'ReadStream - readStream()'}</Text>
662642
<View style={styles.sectionDescription}>
663643
<TextInput style={styles.input} placeholder="Source path" onChangeText={(readStreamParam) => setReadStreamParam(readStreamParam)} placeholderTextColor="#9a73ef" autoCapitalize="none" />
664-
665-
<Picker readEncodeStreamParam={readEncodeStreamParam} onChangeText={(readPositionParam) => setReadPositionParam(readPositionParam)} style={{height: 50, width: 150}} onValueChange={(itemValue, itemIndex) => setReadStreamEncodeParam(itemValue)}>
666-
<Picker.Item label="UTF8" value="utf8" />
667-
<Picker.Item label="Base64" value="base64" />
668-
<Picker.Item label="ASCII" value="ascii" />
669-
</Picker>
670644
</View>
671645
<Button title="Read" color="#9a73ef" onPress={readStreamCall} />
672646
</View>

examples/ReactNativeBlobUtil/metro.config.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ const config = {
2121
//
2222
resolver: {
2323
extraNodeModules: {
24-
"react-native-blob-util": path.resolve(
24+
'react-native-blob-util': path.resolve(
2525
__dirname,
26-
"../../"
26+
'../../'
2727
),
2828
},
2929
blockList: exclusionList([
@@ -38,6 +38,12 @@ const config = {
3838
]),
3939
//
4040
},
41+
watchFolders: [
42+
// This allows us to use the local version of react-native-windows
43+
rnwPath,
44+
// This allows us to use the local version of react-native-blob-util
45+
path.resolve(__dirname, '../../'),
46+
],
4147
transformer: {
4248
getTransformOptions: async () => ({
4349
transform: {

windows/ReactNativeBlobUtil/packages.lock.json

Lines changed: 3 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -2,58 +2,11 @@
22
"version": 1,
33
"dependencies": {
44
"native,Version=v0.0": {
5-
"boost": {
6-
"type": "Direct",
7-
"requested": "[1.83.0, )",
8-
"resolved": "1.83.0",
9-
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
10-
},
11-
"Microsoft.ReactNative": {
12-
"type": "Direct",
13-
"requested": "[0.76.13-Fabric, )",
14-
"resolved": "0.76.13-Fabric",
15-
"contentHash": "27knHk/oMl4BoTERHHJjGFR0+siIjJSxpXGf4SE2yMMqh23E8ldh/Y+vj9Rdegw5ImYE2Vv1AAWUT2AVxWIpeQ=="
16-
},
17-
"Microsoft.ReactNative.Cxx": {
18-
"type": "Direct",
19-
"requested": "[0.76.13-Fabric, )",
20-
"resolved": "0.76.13-Fabric",
21-
"contentHash": "xc5bToQBHt0BBkFQcaFG6fAdquYGHLdCaxqwwkUTpLIxfqPOIHFXHv5ADm/9KvzlXbW/4RjtT5zUzIZoBf4N1w==",
22-
"dependencies": {
23-
"Microsoft.ReactNative": "0.76.13-Fabric"
24-
}
25-
},
26-
"Microsoft.VCRTForwarders.140": {
27-
"type": "Direct",
28-
"requested": "[1.0.2-rc, )",
29-
"resolved": "1.0.2-rc",
30-
"contentHash": "/r+sjtEeCIGyDhobIZ5hSmYhC/dSyGZxf1SxYJpElUhB0LMCktOMFs9gXrauXypIFECpVynNyVjAmJt6hjJ5oQ=="
31-
},
325
"Microsoft.Windows.CppWinRT": {
336
"type": "Direct",
34-
"requested": "[2.0.230706.1, )",
35-
"resolved": "2.0.230706.1",
36-
"contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
37-
},
38-
"Microsoft.WindowsAppSDK": {
39-
"type": "Direct",
40-
"requested": "[1.7.250401001, )",
41-
"resolved": "1.7.250401001",
42-
"contentHash": "kPsJ2LZoo3Xs/6FtIWMZRGnQ2ZMx9zDa0ZpqRGz1qwZr0gwwlXZJTmngaA1Ym2AHmIa05NtX2jEE2He8CzfhTg==",
43-
"dependencies": {
44-
"Microsoft.Web.WebView2": "1.0.2903.40",
45-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
46-
}
47-
},
48-
"Microsoft.Web.WebView2": {
49-
"type": "Transitive",
50-
"resolved": "1.0.2903.40",
51-
"contentHash": "THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ=="
52-
},
53-
"Microsoft.Windows.SDK.BuildTools": {
54-
"type": "Transitive",
55-
"resolved": "10.0.22621.756",
56-
"contentHash": "7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA=="
7+
"requested": "[2.0.200615.7, 2.0.200615.7]",
8+
"resolved": "2.0.200615.7",
9+
"contentHash": "v0eqkeeZkokrx3EsTe44wM8ZD+8yDJQDItGeA0WX2PpQrp2GYLGgiYlqc3f+XJqs/3DAGrKbxpRFFlcMivWJeQ=="
5710
}
5811
}
5912
}

yarn.lock

Lines changed: 19 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -744,20 +744,7 @@
744744
"@babel/parser" "^7.27.2"
745745
"@babel/types" "^7.27.1"
746746

747-
"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3":
748-
version "7.27.1"
749-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.1.tgz#4db772902b133bbddd1c4f7a7ee47761c1b9f291"
750-
integrity sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==
751-
dependencies:
752-
"@babel/code-frame" "^7.27.1"
753-
"@babel/generator" "^7.27.1"
754-
"@babel/parser" "^7.27.1"
755-
"@babel/template" "^7.27.1"
756-
"@babel/types" "^7.27.1"
757-
debug "^4.3.1"
758-
globals "^11.1.0"
759-
760-
"@babel/traverse@^7.25.3", "@babel/traverse@^7.27.1":
747+
"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3", "@babel/traverse@^7.25.3", "@babel/traverse@^7.27.1":
761748
version "7.27.1"
762749
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.1.tgz#4db772902b133bbddd1c4f7a7ee47761c1b9f291"
763750
integrity sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==
@@ -2950,26 +2937,26 @@ errorhandler@^1.5.1:
29502937
escape-html "~1.0.3"
29512938

29522939
es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6, es-abstract@^1.23.9:
2953-
version "1.23.9"
2954-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.9.tgz#5b45994b7de78dada5c1bebf1379646b32b9d606"
2955-
integrity sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==
2940+
version "1.23.10"
2941+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.10.tgz#84792c152ff2898ec73efe33c1c1323a3dfd87f8"
2942+
integrity sha512-MtUbM072wlJNyeYAe0mhzrD+M6DIJa96CZAOBBrhDbgKnB4MApIKefcyAB1eOdYn8cUNZgvwBvEzdoAYsxgEIw==
29562943
dependencies:
29572944
array-buffer-byte-length "^1.0.2"
29582945
arraybuffer.prototype.slice "^1.0.4"
29592946
available-typed-arrays "^1.0.7"
29602947
call-bind "^1.0.8"
2961-
call-bound "^1.0.3"
2948+
call-bound "^1.0.4"
29622949
data-view-buffer "^1.0.2"
29632950
data-view-byte-length "^1.0.2"
29642951
data-view-byte-offset "^1.0.1"
29652952
es-define-property "^1.0.1"
29662953
es-errors "^1.3.0"
2967-
es-object-atoms "^1.0.0"
2954+
es-object-atoms "^1.1.1"
29682955
es-set-tostringtag "^2.1.0"
29692956
es-to-primitive "^1.3.0"
29702957
function.prototype.name "^1.1.8"
2971-
get-intrinsic "^1.2.7"
2972-
get-proto "^1.0.0"
2958+
get-intrinsic "^1.3.0"
2959+
get-proto "^1.0.1"
29732960
get-symbol-description "^1.1.0"
29742961
globalthis "^1.0.4"
29752962
gopd "^1.2.0"
@@ -2985,13 +2972,13 @@ es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23
29852972
is-shared-array-buffer "^1.0.4"
29862973
is-string "^1.1.1"
29872974
is-typed-array "^1.1.15"
2988-
is-weakref "^1.1.0"
2975+
is-weakref "^1.1.1"
29892976
math-intrinsics "^1.1.0"
2990-
object-inspect "^1.13.3"
2977+
object-inspect "^1.13.4"
29912978
object-keys "^1.1.1"
29922979
object.assign "^4.1.7"
29932980
own-keys "^1.0.1"
2994-
regexp.prototype.flags "^1.5.3"
2981+
regexp.prototype.flags "^1.5.4"
29952982
safe-array-concat "^1.1.3"
29962983
safe-push-apply "^1.0.0"
29972984
safe-regex-test "^1.1.0"
@@ -3004,7 +2991,7 @@ es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23
30042991
typed-array-byte-offset "^1.0.4"
30052992
typed-array-length "^1.0.7"
30062993
unbox-primitive "^1.1.0"
3007-
which-typed-array "^1.1.18"
2994+
which-typed-array "^1.1.19"
30082995

30092996
es-define-property@^1.0.0, es-define-property@^1.0.1:
30102997
version "1.0.1"
@@ -4132,7 +4119,7 @@ is-weakmap@^2.0.2:
41324119
resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd"
41334120
integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
41344121

4135-
is-weakref@^1.0.2, is-weakref@^1.1.0:
4122+
is-weakref@^1.0.2, is-weakref@^1.1.1:
41364123
version "1.1.1"
41374124
resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz#eea430182be8d64174bd96bffbc46f21bf3f9293"
41384125
integrity sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==
@@ -5036,7 +5023,7 @@ object-assign@^4.1.1:
50365023
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
50375024
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
50385025

5039-
object-inspect@^1.13.3:
5026+
object-inspect@^1.13.3, object-inspect@^1.13.4:
50405027
version "1.13.4"
50415028
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213"
50425029
integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==
@@ -5663,7 +5650,7 @@ regenerator-runtime@^0.13.2:
56635650
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
56645651
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
56655652

5666-
regexp.prototype.flags@^1.5.3:
5653+
regexp.prototype.flags@^1.5.3, regexp.prototype.flags@^1.5.4:
56675654
version "1.5.4"
56685655
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz#1ad6c62d44a259007e55b3970e00f746efbcaa19"
56695656
integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==
@@ -6098,16 +6085,7 @@ string-natural-compare@^3.0.1:
60986085
resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4"
60996086
integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
61006087

6101-
"string-width-cjs@npm:string-width@^4.2.0":
6102-
version "4.2.3"
6103-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
6104-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
6105-
dependencies:
6106-
emoji-regex "^8.0.0"
6107-
is-fullwidth-code-point "^3.0.0"
6108-
strip-ansi "^6.0.1"
6109-
6110-
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
6088+
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
61116089
version "4.2.3"
61126090
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
61136091
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -6191,7 +6169,7 @@ string_decoder@^1.1.1:
61916169
dependencies:
61926170
safe-buffer "~5.2.0"
61936171

6194-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
6172+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
61956173
version "6.0.1"
61966174
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
61976175
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -6205,13 +6183,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.2.0:
62056183
dependencies:
62066184
ansi-regex "^4.1.0"
62076185

6208-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
6209-
version "6.0.1"
6210-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
6211-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
6212-
dependencies:
6213-
ansi-regex "^5.0.1"
6214-
62156186
strip-ansi@^7.0.1:
62166187
version "7.1.0"
62176188
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
@@ -6575,7 +6546,7 @@ which-module@^2.0.0:
65756546
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
65766547
integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
65776548

6578-
which-typed-array@^1.1.16, which-typed-array@^1.1.18:
6549+
which-typed-array@^1.1.16, which-typed-array@^1.1.19:
65796550
version "1.1.19"
65806551
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956"
65816552
integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==
@@ -6607,7 +6578,7 @@ word-wrap@^1.2.5:
66076578
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
66086579
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
66096580

6610-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
6581+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
66116582
version "7.0.0"
66126583
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
66136584
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -6625,15 +6596,6 @@ wrap-ansi@^6.2.0:
66256596
string-width "^4.1.0"
66266597
strip-ansi "^6.0.0"
66276598

6628-
wrap-ansi@^7.0.0:
6629-
version "7.0.0"
6630-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
6631-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
6632-
dependencies:
6633-
ansi-styles "^4.0.0"
6634-
string-width "^4.1.0"
6635-
strip-ansi "^6.0.0"
6636-
66376599
wrap-ansi@^8.1.0:
66386600
version "8.1.0"
66396601
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)