@frsource/frs-replace 4.0.0 → 4.1.0
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/CHANGELOG.md +7 -0
- package/README.md +1 -0
- package/bin/cli.js +11 -3
- package/package.json +3 -3
- package/yarn.lock +91 -53
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [4.1.0](https://github.com/FRSource/frs-replace/compare/v4.0.0...v4.1.0) (2023-02-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add stdin flag ([7574b49](https://github.com/FRSource/frs-replace/commit/7574b49274a525432f0353b0ce24c54e1514e580))
|
|
11
|
+
|
|
5
12
|
## [4.0.0](https://github.com/FRSource/frs-replace/compare/v3.0.3...v4.0.0) (2022-12-07)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -100,6 +100,7 @@ frs-replace <regex> <replacement> [options]
|
|
|
100
100
|
|‑i, ‑‑input | string or string[] | *-* | Path to files or [fast-glob](https://github.com/mrmlnc/fast-glob) pattern pointing to files to be read & replaced from. If multiple files specified results will be joined using `outputJoinString` option's value) |
|
|
101
101
|
| ‑‑i-read-opts | string or object | utf8 | Options which are passed directly to the [readFileSync method](https://nodejs.org/api/fs.html#fs_fs_readfilesync_path_options) when reading input file |
|
|
102
102
|
| ‑‑i-glob-opts | object | *undefined* | Options which are passed directly to the [fast-glob package](https://github.com/mrmlnc/fast-glob#options-1) when resolving glob patterns |
|
|
103
|
+
| ‑‑stdin | boolean | *true* | Wait for stdin input (should be set to *false* when used in non-interactive terminals) |
|
|
103
104
|
| ‑o, ‑‑output | string | *-* | Output file name/path (replaces the file if it already exists and creates any intermediate directories if they don't already exist) |
|
|
104
105
|
| ‑‑o-write-opts | string or object | utf8 | Passed as options argument of [write's .sync](https://www.npmjs.com/package/write#sync) |
|
|
105
106
|
| ‑‑o-join-str | string | \n | Used when joining multiple files, passed directly to [javascript join](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join#Syntax) |
|
package/bin/cli.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const replaceSync = require('../sync')
|
|
2
|
+
const replaceSync = require('../sync');
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
(
|
|
5
|
+
~process.argv.indexOf('--no-stdin')
|
|
6
|
+
? Promise.resolve()
|
|
7
|
+
: require('get-stdin')()
|
|
8
|
+
).then((stdin) => {
|
|
5
9
|
const isPiped = !!stdin
|
|
6
10
|
|
|
7
11
|
if (isPiped) {
|
|
@@ -48,7 +52,6 @@ require('get-stdin')().then((stdin) => {
|
|
|
48
52
|
.choices('f', ['', 'g', 'm', 'i', 'gm', 'gi', 'mi', 'mg', 'ig', 'im', 'gmi', 'gim', 'mig', 'mgi', 'igm', 'img'])
|
|
49
53
|
.default('f', 'g')
|
|
50
54
|
.coerce('f', arg => arg.trim())
|
|
51
|
-
|
|
52
55
|
.option('i', { demandOption: !isContentPresent && !isHelpPresent })
|
|
53
56
|
.alias('i', 'input')
|
|
54
57
|
.describe('i', 'Path to files or fast-glob pattern pointing to files to read & replace from')
|
|
@@ -63,6 +66,11 @@ require('get-stdin')().then((stdin) => {
|
|
|
63
66
|
.describe('i-glob-opts', 'Passed to fast-glob.sync when resolving glob patterns')
|
|
64
67
|
.implies('i-glob-opts', 'i')
|
|
65
68
|
|
|
69
|
+
.option('stdin')
|
|
70
|
+
.describe('stdin', 'Wait for stdin input (should be set to false when used in non-interactive terminals)')
|
|
71
|
+
.boolean('stdin')
|
|
72
|
+
.default('stdin', true)
|
|
73
|
+
|
|
66
74
|
.option('c', { demandOption: isContentPresent })
|
|
67
75
|
.alias('c', 'content')
|
|
68
76
|
.describe('c', 'Content to be replaced (takes precedence over stream & file input)')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frsource/frs-replace",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Simple wrapper around javascript replace with CLI usage support!",
|
|
5
5
|
"bin": {
|
|
6
6
|
"frs-replace": "./bin/cli.js"
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"perfy": "1.1.5",
|
|
60
|
-
"replace": "1.2.
|
|
60
|
+
"replace": "1.2.2",
|
|
61
61
|
"replace-in-file": "6.3.5",
|
|
62
62
|
"replace-string": "3.1.0",
|
|
63
63
|
"standard": "17.0.0",
|
|
64
64
|
"standard-version": "9.5.0",
|
|
65
|
-
"tap": "16.3.
|
|
65
|
+
"tap": "16.3.4",
|
|
66
66
|
"tmp-promise": "3.0.3"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
package/yarn.lock
CHANGED
|
@@ -558,10 +558,10 @@
|
|
|
558
558
|
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
|
|
559
559
|
integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
|
|
560
560
|
|
|
561
|
-
"@types/react@^17":
|
|
562
|
-
version "17.0.
|
|
563
|
-
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.
|
|
564
|
-
integrity sha512-
|
|
561
|
+
"@types/react@^17.0.52":
|
|
562
|
+
version "17.0.52"
|
|
563
|
+
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b"
|
|
564
|
+
integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==
|
|
565
565
|
dependencies:
|
|
566
566
|
"@types/prop-types" "*"
|
|
567
567
|
"@types/scheduler" "*"
|
|
@@ -1269,7 +1269,7 @@ core-util-is@~1.0.0:
|
|
|
1269
1269
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
|
1270
1270
|
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
|
1271
1271
|
|
|
1272
|
-
cross-spawn@^7.0.0, cross-spawn@^7.0.2:
|
|
1272
|
+
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
|
|
1273
1273
|
version "7.0.3"
|
|
1274
1274
|
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
|
1275
1275
|
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
|
@@ -2086,7 +2086,7 @@ glob-parent@^6.0.1:
|
|
|
2086
2086
|
dependencies:
|
|
2087
2087
|
is-glob "^4.0.3"
|
|
2088
2088
|
|
|
2089
|
-
glob@^7.0.0, glob@^7.0.5, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0:
|
|
2089
|
+
glob@^7.0.0, glob@^7.0.5, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0, glob@^7.2.3:
|
|
2090
2090
|
version "7.2.3"
|
|
2091
2091
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
|
|
2092
2092
|
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
|
|
@@ -2571,6 +2571,11 @@ istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.0.0-alpha.1:
|
|
|
2571
2571
|
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
|
|
2572
2572
|
integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
|
|
2573
2573
|
|
|
2574
|
+
istanbul-lib-coverage@^3.2.0:
|
|
2575
|
+
version "3.2.0"
|
|
2576
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3"
|
|
2577
|
+
integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
|
|
2578
|
+
|
|
2574
2579
|
istanbul-lib-hook@^3.0.0:
|
|
2575
2580
|
version "3.0.0"
|
|
2576
2581
|
resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz#8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6"
|
|
@@ -2601,6 +2606,18 @@ istanbul-lib-processinfo@^2.0.2:
|
|
|
2601
2606
|
rimraf "^3.0.0"
|
|
2602
2607
|
uuid "^3.3.3"
|
|
2603
2608
|
|
|
2609
|
+
istanbul-lib-processinfo@^2.0.3:
|
|
2610
|
+
version "2.0.3"
|
|
2611
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz#366d454cd0dcb7eb6e0e419378e60072c8626169"
|
|
2612
|
+
integrity sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==
|
|
2613
|
+
dependencies:
|
|
2614
|
+
archy "^1.0.0"
|
|
2615
|
+
cross-spawn "^7.0.3"
|
|
2616
|
+
istanbul-lib-coverage "^3.2.0"
|
|
2617
|
+
p-map "^3.0.0"
|
|
2618
|
+
rimraf "^3.0.0"
|
|
2619
|
+
uuid "^8.3.2"
|
|
2620
|
+
|
|
2604
2621
|
istanbul-lib-report@^3.0.0:
|
|
2605
2622
|
version "3.0.0"
|
|
2606
2623
|
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
|
|
@@ -2627,10 +2644,10 @@ istanbul-reports@^3.0.2:
|
|
|
2627
2644
|
html-escaper "^2.0.0"
|
|
2628
2645
|
istanbul-lib-report "^3.0.0"
|
|
2629
2646
|
|
|
2630
|
-
jackspeak@^1.4.
|
|
2631
|
-
version "1.4.
|
|
2632
|
-
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-1.4.
|
|
2633
|
-
integrity sha512-
|
|
2647
|
+
jackspeak@^1.4.2:
|
|
2648
|
+
version "1.4.2"
|
|
2649
|
+
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-1.4.2.tgz#30ad5e4b7b36f9f3ae580e23272b1a386b4f6b93"
|
|
2650
|
+
integrity sha512-GHeGTmnuaHnvS+ZctRB01bfxARuu9wW83ENbuiweu07SFcVlZrJpcshSre/keGT7YGBhLHg/+rXCNSrsEHKU4Q==
|
|
2634
2651
|
dependencies:
|
|
2635
2652
|
cliui "^7.0.4"
|
|
2636
2653
|
|
|
@@ -2690,9 +2707,9 @@ json-stringify-safe@^5.0.1:
|
|
|
2690
2707
|
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
|
|
2691
2708
|
|
|
2692
2709
|
json5@^1.0.1:
|
|
2693
|
-
version "1.0.
|
|
2694
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.
|
|
2695
|
-
integrity sha512-
|
|
2710
|
+
version "1.0.2"
|
|
2711
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
|
|
2712
|
+
integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
|
|
2696
2713
|
dependencies:
|
|
2697
2714
|
minimist "^1.2.0"
|
|
2698
2715
|
|
|
@@ -2950,14 +2967,14 @@ min-indent@^1.0.0:
|
|
|
2950
2967
|
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
|
|
2951
2968
|
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
|
|
2952
2969
|
|
|
2953
|
-
minimatch@3.0.
|
|
2954
|
-
version "3.0.
|
|
2955
|
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.
|
|
2956
|
-
integrity sha512-
|
|
2970
|
+
minimatch@3.0.5:
|
|
2971
|
+
version "3.0.5"
|
|
2972
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3"
|
|
2973
|
+
integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==
|
|
2957
2974
|
dependencies:
|
|
2958
2975
|
brace-expansion "^1.1.7"
|
|
2959
2976
|
|
|
2960
|
-
minimatch@^3.1.1, minimatch@^3.1.2:
|
|
2977
|
+
minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
|
|
2961
2978
|
version "3.1.2"
|
|
2962
2979
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
|
|
2963
2980
|
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
|
|
@@ -2973,22 +2990,10 @@ minimist-options@4.1.0:
|
|
|
2973
2990
|
is-plain-obj "^1.1.0"
|
|
2974
2991
|
kind-of "^6.0.3"
|
|
2975
2992
|
|
|
2976
|
-
minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
|
|
2977
|
-
version "1.2.
|
|
2978
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.
|
|
2979
|
-
integrity sha512-
|
|
2980
|
-
|
|
2981
|
-
minimist@^1.2.6:
|
|
2982
|
-
version "1.2.6"
|
|
2983
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
|
|
2984
|
-
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
|
|
2985
|
-
|
|
2986
|
-
minipass@^3.1.1:
|
|
2987
|
-
version "3.1.3"
|
|
2988
|
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd"
|
|
2989
|
-
integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==
|
|
2990
|
-
dependencies:
|
|
2991
|
-
yallist "^4.0.0"
|
|
2993
|
+
minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
|
|
2994
|
+
version "1.2.7"
|
|
2995
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
|
|
2996
|
+
integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
|
|
2992
2997
|
|
|
2993
2998
|
minipass@^3.1.5, minipass@^3.1.6:
|
|
2994
2999
|
version "3.3.4"
|
|
@@ -2997,6 +3002,13 @@ minipass@^3.1.5, minipass@^3.1.6:
|
|
|
2997
3002
|
dependencies:
|
|
2998
3003
|
yallist "^4.0.0"
|
|
2999
3004
|
|
|
3005
|
+
minipass@^3.3.4:
|
|
3006
|
+
version "3.3.6"
|
|
3007
|
+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
|
|
3008
|
+
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
|
|
3009
|
+
dependencies:
|
|
3010
|
+
yallist "^4.0.0"
|
|
3011
|
+
|
|
3000
3012
|
mkdirp@^1.0.4:
|
|
3001
3013
|
version "1.0.4"
|
|
3002
3014
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
|
@@ -3693,13 +3705,13 @@ replace-string@3.1.0:
|
|
|
3693
3705
|
resolved "https://registry.yarnpkg.com/replace-string/-/replace-string-3.1.0.tgz#77a087d88580fbac59851237891aa4b0e283db72"
|
|
3694
3706
|
integrity sha512-yPpxc4ZR2makceA9hy/jHNqc7QVkd4Je/N0WRHm6bs3PtivPuPynxE5ejU/mp5EhnCv8+uZL7vhz8rkluSlx+Q==
|
|
3695
3707
|
|
|
3696
|
-
replace@1.2.
|
|
3697
|
-
version "1.2.
|
|
3698
|
-
resolved "https://registry.yarnpkg.com/replace/-/replace-1.2.
|
|
3699
|
-
integrity sha512-
|
|
3708
|
+
replace@1.2.2:
|
|
3709
|
+
version "1.2.2"
|
|
3710
|
+
resolved "https://registry.yarnpkg.com/replace/-/replace-1.2.2.tgz#880247113a950afa749a297e6d10d4d7bcd27acf"
|
|
3711
|
+
integrity sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==
|
|
3700
3712
|
dependencies:
|
|
3701
3713
|
chalk "2.4.2"
|
|
3702
|
-
minimatch "3.0.
|
|
3714
|
+
minimatch "3.0.5"
|
|
3703
3715
|
yargs "^15.3.1"
|
|
3704
3716
|
|
|
3705
3717
|
require-directory@^2.1.1:
|
|
@@ -4227,7 +4239,7 @@ tap-mocha-reporter@^5.0.3:
|
|
|
4227
4239
|
tap-yaml "^1.0.0"
|
|
4228
4240
|
unicode-length "^2.0.2"
|
|
4229
4241
|
|
|
4230
|
-
tap-parser@^11.0.0
|
|
4242
|
+
tap-parser@^11.0.0:
|
|
4231
4243
|
version "11.0.1"
|
|
4232
4244
|
resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-11.0.1.tgz#513be88daa179cd5b158bbb939b8613e6125312b"
|
|
4233
4245
|
integrity sha512-5ow0oyFOnXVSALYdidMX94u0GEjIlgc/BPFYLx0yRh9hb8+cFGNJqJzDJlUqbLOwx8+NBrIbxCWkIQi7555c0w==
|
|
@@ -4236,6 +4248,15 @@ tap-parser@^11.0.0, tap-parser@^11.0.1:
|
|
|
4236
4248
|
minipass "^3.1.6"
|
|
4237
4249
|
tap-yaml "^1.0.0"
|
|
4238
4250
|
|
|
4251
|
+
tap-parser@^11.0.2:
|
|
4252
|
+
version "11.0.2"
|
|
4253
|
+
resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-11.0.2.tgz#5d3e76e2cc521e23a8c50201487b273ca0fba800"
|
|
4254
|
+
integrity sha512-6qGlC956rcORw+fg7Fv1iCRAY8/bU9UabUAhs3mXRH6eRmVZcNPLheSXCYaVaYeSwx5xa/1HXZb1537YSvwDZg==
|
|
4255
|
+
dependencies:
|
|
4256
|
+
events-to-array "^1.0.1"
|
|
4257
|
+
minipass "^3.1.6"
|
|
4258
|
+
tap-yaml "^1.0.0"
|
|
4259
|
+
|
|
4239
4260
|
tap-yaml@^1.0.0:
|
|
4240
4261
|
version "1.0.0"
|
|
4241
4262
|
resolved "https://registry.yarnpkg.com/tap-yaml/-/tap-yaml-1.0.0.tgz#4e31443a5489e05ca8bbb3e36cef71b5dec69635"
|
|
@@ -4243,24 +4264,31 @@ tap-yaml@^1.0.0:
|
|
|
4243
4264
|
dependencies:
|
|
4244
4265
|
yaml "^1.5.0"
|
|
4245
4266
|
|
|
4246
|
-
tap
|
|
4247
|
-
version "
|
|
4248
|
-
resolved "https://registry.yarnpkg.com/tap/-/tap-
|
|
4249
|
-
integrity sha512-
|
|
4267
|
+
tap-yaml@^1.0.2:
|
|
4268
|
+
version "1.0.2"
|
|
4269
|
+
resolved "https://registry.yarnpkg.com/tap-yaml/-/tap-yaml-1.0.2.tgz#62032a459e5524e10661c19ee9df5d33d78812fa"
|
|
4270
|
+
integrity sha512-GegASpuqBnRNdT1U+yuUPZ8rEU64pL35WPBpCISWwff4dErS2/438barz7WFJl4Nzh3Y05tfPidZnH+GaV1wMg==
|
|
4271
|
+
dependencies:
|
|
4272
|
+
yaml "^1.10.2"
|
|
4273
|
+
|
|
4274
|
+
tap@16.3.4:
|
|
4275
|
+
version "16.3.4"
|
|
4276
|
+
resolved "https://registry.yarnpkg.com/tap/-/tap-16.3.4.tgz#4dc740a9dcbfa2d890fb2b647720f29980289179"
|
|
4277
|
+
integrity sha512-SAexdt2ZF4XBgye6TPucFI2y7VE0qeFXlXucJIV1XDPCs+iJodk0MYacr1zR6Ycltzz7PYg8zrblDXKbAZM2LQ==
|
|
4250
4278
|
dependencies:
|
|
4251
4279
|
"@isaacs/import-jsx" "^4.0.1"
|
|
4252
|
-
"@types/react" "^17"
|
|
4280
|
+
"@types/react" "^17.0.52"
|
|
4253
4281
|
chokidar "^3.3.0"
|
|
4254
4282
|
findit "^2.0.0"
|
|
4255
4283
|
foreground-child "^2.0.0"
|
|
4256
4284
|
fs-exists-cached "^1.0.0"
|
|
4257
|
-
glob "^7.
|
|
4285
|
+
glob "^7.2.3"
|
|
4258
4286
|
ink "^3.2.0"
|
|
4259
4287
|
isexe "^2.0.0"
|
|
4260
|
-
istanbul-lib-processinfo "^2.0.
|
|
4261
|
-
jackspeak "^1.4.
|
|
4288
|
+
istanbul-lib-processinfo "^2.0.3"
|
|
4289
|
+
jackspeak "^1.4.2"
|
|
4262
4290
|
libtap "^1.4.0"
|
|
4263
|
-
minipass "^3.
|
|
4291
|
+
minipass "^3.3.4"
|
|
4264
4292
|
mkdirp "^1.0.4"
|
|
4265
4293
|
nyc "^15.1.0"
|
|
4266
4294
|
opener "^1.5.1"
|
|
@@ -4269,10 +4297,10 @@ tap@16.3.0:
|
|
|
4269
4297
|
signal-exit "^3.0.6"
|
|
4270
4298
|
source-map-support "^0.5.16"
|
|
4271
4299
|
tap-mocha-reporter "^5.0.3"
|
|
4272
|
-
tap-parser "^11.0.
|
|
4273
|
-
tap-yaml "^1.0.
|
|
4300
|
+
tap-parser "^11.0.2"
|
|
4301
|
+
tap-yaml "^1.0.2"
|
|
4274
4302
|
tcompare "^5.0.7"
|
|
4275
|
-
treport "^3.0.
|
|
4303
|
+
treport "^3.0.4"
|
|
4276
4304
|
which "^2.0.2"
|
|
4277
4305
|
|
|
4278
4306
|
tcompare@^5.0.6, tcompare@^5.0.7:
|
|
@@ -4347,7 +4375,7 @@ to-regex-range@^5.0.1:
|
|
|
4347
4375
|
dependencies:
|
|
4348
4376
|
is-number "^7.0.0"
|
|
4349
4377
|
|
|
4350
|
-
treport@^3.0.
|
|
4378
|
+
treport@^3.0.4:
|
|
4351
4379
|
version "3.0.4"
|
|
4352
4380
|
resolved "https://registry.yarnpkg.com/treport/-/treport-3.0.4.tgz#05247fa7820ad3afe92355e4cf08fe41a933084b"
|
|
4353
4381
|
integrity sha512-zUw1sfJypuoZi0I54woo6CNsfvMrv+OwLBD0/wc4LhMW8MA0MbSE+4fNObn22JSR8x9lOYccuAzfBfZ2IemzoQ==
|
|
@@ -4495,6 +4523,11 @@ uuid@^3.3.3:
|
|
|
4495
4523
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
|
4496
4524
|
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
|
4497
4525
|
|
|
4526
|
+
uuid@^8.3.2:
|
|
4527
|
+
version "8.3.2"
|
|
4528
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
|
|
4529
|
+
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
|
|
4530
|
+
|
|
4498
4531
|
validate-npm-package-license@^3.0.1:
|
|
4499
4532
|
version "3.0.4"
|
|
4500
4533
|
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
|
|
@@ -4613,6 +4646,11 @@ yallist@^4.0.0:
|
|
|
4613
4646
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
|
4614
4647
|
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
|
4615
4648
|
|
|
4649
|
+
yaml@^1.10.2:
|
|
4650
|
+
version "1.10.2"
|
|
4651
|
+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
|
4652
|
+
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
|
4653
|
+
|
|
4616
4654
|
yaml@^1.5.0:
|
|
4617
4655
|
version "1.10.0"
|
|
4618
4656
|
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
|