Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit 2e912f6

Browse files
authored
fix(gatsby-theme-docz): add gatsby-source-filesystem (#1231)
* fix(gatsby-theme-docz): add gatsby-source-filesystem to pre-process files before gatsby-plugin-mdx
1 parent 755de48 commit 2e912f6

File tree

3 files changed

+162
-10
lines changed

3 files changed

+162
-10
lines changed

core/gatsby-theme-docz/gatsby-config.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,23 @@ module.exports = opts => {
4040

4141
return {
4242
plugins: [
43+
{
44+
resolve: `gatsby-source-filesystem`,
45+
options: {
46+
ignore: [
47+
`${config.paths.docz}/**/*`,
48+
// gatsby cache
49+
`${config.paths.root}/.cache/**/*`,
50+
// static assets with gatsby site setup
51+
`${config.paths.root}/public/**/*`,
52+
// ignore node_modules unless user explicitly asks for them to be included
53+
config.src.indexOf('node_modules') === -1
54+
? `${config.paths.root}/node_modules/**/*`
55+
: `${config.paths.root}/node_modules/.cache/**/*`,
56+
],
57+
path: config.paths.root,
58+
},
59+
},
4360
{
4461
resolve: 'gatsby-plugin-mdx',
4562
options: {

core/gatsby-theme-docz/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"gatsby-plugin-mdx": "^1.0.13",
3737
"gatsby-plugin-react-helmet-async": "^1.0.5",
3838
"gatsby-plugin-root-import": "^2.0.5",
39+
"gatsby-source-filesystem": "^2.1.35",
3940
"lodash": "^4.17.14",
4041
"mdx-utils": "^0.2.0",
4142
"prop-types": "^15.7.2",

yarn.lock

Lines changed: 144 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,13 @@
996996
dependencies:
997997
regenerator-runtime "^0.13.2"
998998

999+
"@babel/runtime@^7.6.3":
1000+
version "7.7.1"
1001+
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.1.tgz#b223497bbfbcbbb38116673904debc71470ca528"
1002+
integrity sha512-SQ0sS7KUJDvgCI2cpZG0nJygO6002oTbhgSuw4WcocsnbxLwL5Q8I3fqbJdyBAc3uFrWZiR2JomseuxSuci3SQ==
1003+
dependencies:
1004+
regenerator-runtime "^0.13.2"
1005+
9991006
"@babel/standalone@^7.4.5":
10001007
version "7.5.4"
10011008
resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.5.4.tgz#c57221528619fcd2e8e2425f11d5d7cd79263b80"
@@ -3619,6 +3626,14 @@ anymatch@^3.0.1:
36193626
normalize-path "^3.0.0"
36203627
picomatch "^2.0.4"
36213628

3629+
anymatch@~3.1.1:
3630+
version "3.1.1"
3631+
resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
3632+
integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
3633+
dependencies:
3634+
normalize-path "^3.0.0"
3635+
picomatch "^2.0.4"
3636+
36223637
aproba@^1.0.3, aproba@^1.1.1:
36233638
version "1.2.0"
36243639
resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
@@ -4981,7 +4996,7 @@ better-queue-memory@^1.0.1:
49814996
resolved "https://registry.npmjs.org/better-queue-memory/-/better-queue-memory-1.0.3.tgz#4e71fbb5f5976188656e0c5610da7b411af41493"
49824997
integrity sha512-QLFkfV+k/7e4L4FR7kqkXKtRi22kl68c/3AaBs0ArDSz0iiuAl0DjVlb6gM220jW7izLE5TRy7oXOd4Cxa0wog==
49834998

4984-
better-queue@^3.8.6:
4999+
better-queue@^3.8.10, better-queue@^3.8.6:
49855000
version "3.8.10"
49865001
resolved "https://registry.npmjs.org/better-queue/-/better-queue-3.8.10.tgz#1c93b9ec4cb3d1b72eb91d0efcb84fc80e8c6835"
49875002
integrity sha512-e3gwNZgDCnNWl0An0Tz6sUjKDV9m6aB+K9Xg//vYeo8+KiH8pWhLFxkawcXhm6FpM//GfD9IQv/kmvWCAVVpKA==
@@ -5043,6 +5058,11 @@ bluebird@^3.0.5, bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.
50435058
resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f"
50445059
integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
50455060

5061+
bluebird@^3.7.1:
5062+
version "3.7.1"
5063+
resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de"
5064+
integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==
5065+
50465066
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
50475067
version "4.11.8"
50485068
resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
@@ -5142,7 +5162,7 @@ braces@^2.3.1, braces@^2.3.2:
51425162
split-string "^3.0.2"
51435163
to-regex "^3.0.1"
51445164

5145-
braces@^3.0.1, braces@^3.0.2:
5165+
braces@^3.0.1, braces@^3.0.2, braces@~3.0.2:
51465166
version "3.0.2"
51475167
resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
51485168
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
@@ -5763,6 +5783,21 @@ chokidar@2.1.2:
57635783
optionalDependencies:
57645784
fsevents "^1.2.7"
57655785

5786+
chokidar@3.2.3:
5787+
version "3.2.3"
5788+
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.2.3.tgz#b9270a565d14f02f6bfdd537a6a2bbf5549b8c8c"
5789+
integrity sha512-GtrxGuRf6bzHQmXWRepvsGnXpkQkVU+D2/9a7dAe4a7v1NhrfZOZ2oKf76M3nOs46fFYL8D+Q8JYA4GYeJ8Cjw==
5790+
dependencies:
5791+
anymatch "~3.1.1"
5792+
braces "~3.0.2"
5793+
glob-parent "~5.1.0"
5794+
is-binary-path "~2.1.0"
5795+
is-glob "~4.0.1"
5796+
normalize-path "~3.0.0"
5797+
readdirp "~3.2.0"
5798+
optionalDependencies:
5799+
fsevents "~2.1.1"
5800+
57665801
chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.6:
57675802
version "2.1.8"
57685803
resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
@@ -7116,7 +7151,7 @@ decode-uri-component@^0.2.0:
71167151
resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
71177152
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
71187153

7119-
decompress-response@^3.3.0:
7154+
decompress-response@^3.2.0, decompress-response@^3.3.0:
71207155
version "3.3.0"
71217156
resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
71227157
integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
@@ -8835,6 +8870,11 @@ file-loader@^3.0.1:
88358870
loader-utils "^1.0.2"
88368871
schema-utils "^1.0.0"
88378872

8873+
file-type@^12.3.1:
8874+
version "12.4.0"
8875+
resolved "https://registry.npmjs.org/file-type/-/file-type-12.4.0.tgz#a9a399459e1940d9f34b3973039958f1f36a565e"
8876+
integrity sha512-WTvyKq8yjtNmUtVAD8LGcTkvtCdJglM6ks2HTqEClm6+65XTqM6MoZYA1Vtra50DLRWLiM38fEs1y56f5VhnUA==
8877+
88388878
filesize@3.5.11:
88398879
version "3.5.11"
88408880
resolved "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee"
@@ -9162,6 +9202,11 @@ fsevents@^2.0.6:
91629202
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.0.6.tgz#87b19df0bfb4a1a51d7ddb51b01b5f3bedb40c33"
91639203
integrity sha512-vfmKZp3XPM36DNF0qhW+Cdxk7xm7gTEHY1clv1Xq1arwRQuKZgAhw+NZNWbJBtuaNxzNXwhfdPYRrvIbjfS33A==
91649204

9205+
fsevents@~2.1.1:
9206+
version "2.1.1"
9207+
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.1.1.tgz#74c64e21df71721845d0c44fe54b7f56b82995a9"
9208+
integrity sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw==
9209+
91659210
function-bind@^1.0.2, function-bind@^1.1.1:
91669211
version "1.1.1"
91679212
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
@@ -9218,6 +9263,13 @@ gatsby-cli@^2.7.15:
92189263
ink "^2.0.5"
92199264
ink-spinner "^3.0.1"
92209265

9266+
gatsby-core-utils@^1.0.17:
9267+
version "1.0.17"
9268+
resolved "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-1.0.17.tgz#f8a4d5d9b1d83c5799f187dca5ff86654cdfc4d8"
9269+
integrity sha512-5LOderWqZFGaTwwLgqDgad/5Hbf/WFD44ZmodqSJLYUOG8K0wv4PctlQ2/1UO+LZuKYanthYi3jAVgk4OooeSQ==
9270+
dependencies:
9271+
ci-info "2.0.0"
9272+
92219273
gatsby-graphiql-explorer@^0.2.3:
92229274
version "0.2.3"
92239275
resolved "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-0.2.3.tgz#fdfc6c1b8b5019df57aad025badb552e3141f6e4"
@@ -9359,6 +9411,27 @@ gatsby-react-router-scroll@^2.1.3:
93599411
scroll-behavior "^0.9.9"
93609412
warning "^3.0.0"
93619413

9414+
gatsby-source-filesystem@^2.1.35:
9415+
version "2.1.35"
9416+
resolved "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-2.1.35.tgz#b0ae2de06b1100fa9f48e79a2f290e5a82d2d4ff"
9417+
integrity sha512-ZhARtQg078ogjj/LHVw8wFKok4LR97UXGoBf5QSH1glJVSu/oM1WWkpCCPsvjvdgXUO2BJVbNLo2ZXoG5d+U3g==
9418+
dependencies:
9419+
"@babel/runtime" "^7.6.3"
9420+
better-queue "^3.8.10"
9421+
bluebird "^3.7.1"
9422+
chokidar "3.2.3"
9423+
file-type "^12.3.1"
9424+
fs-extra "^8.1.0"
9425+
gatsby-core-utils "^1.0.17"
9426+
got "^7.1.0"
9427+
md5-file "^3.2.3"
9428+
mime "^2.4.4"
9429+
pretty-bytes "^4.0.2"
9430+
progress "^2.0.3"
9431+
read-chunk "^3.2.0"
9432+
valid-url "^1.0.9"
9433+
xstate "^4.6.7"
9434+
93629435
gatsby-telemetry@^1.1.6:
93639436
version "1.1.6"
93649437
resolved "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-1.1.6.tgz#957c95e1eefcfdfb5a82b4cb85d13e88e429bdd7"
@@ -9723,6 +9796,13 @@ glob-parent@^5.0.0:
97239796
dependencies:
97249797
is-glob "^4.0.1"
97259798

9799+
glob-parent@~5.1.0:
9800+
version "5.1.0"
9801+
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
9802+
integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
9803+
dependencies:
9804+
is-glob "^4.0.1"
9805+
97269806
glob-to-regexp@^0.3.0:
97279807
version "0.3.0"
97289808
resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
@@ -9904,6 +9984,26 @@ got@^6.7.1:
99049984
unzip-response "^2.0.1"
99059985
url-parse-lax "^1.0.0"
99069986

9987+
got@^7.1.0:
9988+
version "7.1.0"
9989+
resolved "https://registry.npmjs.org/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a"
9990+
integrity sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==
9991+
dependencies:
9992+
decompress-response "^3.2.0"
9993+
duplexer3 "^0.1.4"
9994+
get-stream "^3.0.0"
9995+
is-plain-obj "^1.1.0"
9996+
is-retry-allowed "^1.0.0"
9997+
is-stream "^1.0.0"
9998+
isurl "^1.0.0-alpha5"
9999+
lowercase-keys "^1.0.0"
10000+
p-cancelable "^0.3.0"
10001+
p-timeout "^1.1.1"
10002+
safe-buffer "^5.0.1"
10003+
timed-out "^4.0.0"
10004+
url-parse-lax "^1.0.0"
10005+
url-to-options "^1.0.1"
10006+
990710007
got@^9.6.0:
990810008
version "9.6.0"
990910009
resolved "https://registry.npmjs.org/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
@@ -10961,7 +11061,7 @@ is-binary-path@^1.0.0:
1096111061
dependencies:
1096211062
binary-extensions "^1.0.0"
1096311063

10964-
is-binary-path@^2.1.0:
11064+
is-binary-path@^2.1.0, is-binary-path@~2.1.0:
1096511065
version "2.1.0"
1096611066
resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1096711067
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
@@ -11133,7 +11233,7 @@ is-glob@^3.1.0:
1113311233
dependencies:
1113411234
is-extglob "^2.1.0"
1113511235

11136-
is-glob@^4.0.0, is-glob@^4.0.1:
11236+
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
1113711237
version "4.0.1"
1113811238
resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1113911239
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
@@ -12912,7 +13012,7 @@ match-url-wildcard@0.0.4:
1291213012
dependencies:
1291313013
escape-string-regexp "^1.0.5"
1291413014

12915-
md5-file@^3.1.1:
13015+
md5-file@^3.1.1, md5-file@^3.2.3:
1291613016
version "3.2.3"
1291713017
resolved "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz#f9bceb941eca2214a4c0727f5e700314e770f06f"
1291813018
integrity sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==
@@ -13234,7 +13334,7 @@ mime@1.6.0:
1323413334
resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
1323513335
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
1323613336

13237-
mime@^2.0.3, mime@^2.2.0, mime@^2.3.1, mime@^2.4.2:
13337+
mime@^2.0.3, mime@^2.2.0, mime@^2.3.1, mime@^2.4.2, mime@^2.4.4:
1323813338
version "2.4.4"
1323913339
resolved "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
1324013340
integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
@@ -13794,7 +13894,7 @@ normalize-path@^2.1.1:
1379413894
dependencies:
1379513895
remove-trailing-separator "^1.0.1"
1379613896

13797-
normalize-path@^3.0.0:
13897+
normalize-path@^3.0.0, normalize-path@~3.0.0:
1379813898
version "3.0.0"
1379913899
resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1380013900
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
@@ -14367,7 +14467,7 @@ p-retry@^3.0.1:
1436714467
dependencies:
1436814468
retry "^0.12.0"
1436914469

14370-
p-timeout@^1.2.0:
14470+
p-timeout@^1.1.1, p-timeout@^1.2.0:
1437114471
version "1.2.1"
1437214472
resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
1437314473
integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=
@@ -14379,7 +14479,7 @@ p-try@^1.0.0:
1437914479
resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1438014480
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1438114481

14382-
p-try@^2.0.0, p-try@^2.2.0:
14482+
p-try@^2.0.0, p-try@^2.1.0, p-try@^2.2.0:
1438314483
version "2.2.0"
1438414484
resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
1438514485
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
@@ -15273,6 +15373,11 @@ prettier@^1.17.0, prettier@^1.18.2:
1527315373
resolved "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
1527415374
integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
1527515375

15376+
pretty-bytes@^4.0.2:
15377+
version "4.0.2"
15378+
resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
15379+
integrity sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=
15380+
1527615381
pretty-bytes@^5.1.0:
1527715382
version "5.2.0"
1527815383
resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.2.0.tgz#96c92c6e95a0b35059253fb33c03e260d40f5a1f"
@@ -15803,6 +15908,14 @@ react@^16.8.0, react@^16.8.4, react@^16.8.6:
1580315908
object-assign "^4.1.1"
1580415909
prop-types "^15.6.2"
1580515910

15911+
read-chunk@^3.2.0:
15912+
version "3.2.0"
15913+
resolved "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz#2984afe78ca9bfbbdb74b19387bf9e86289c16ca"
15914+
integrity sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==
15915+
dependencies:
15916+
pify "^4.0.1"
15917+
with-open-file "^0.1.6"
15918+
1580615919
read-cmd-shim@^1.0.1:
1580715920
version "1.0.1"
1580815921
resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b"
@@ -15974,6 +16087,13 @@ readdirp@^3.1.1:
1597416087
dependencies:
1597516088
picomatch "^2.0.4"
1597616089

16090+
readdirp@~3.2.0:
16091+
version "3.2.0"
16092+
resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839"
16093+
integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==
16094+
dependencies:
16095+
picomatch "^2.0.4"
16096+
1597716097
realpath-native@^1.1.0:
1597816098
version "1.1.0"
1597916099
resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
@@ -19410,6 +19530,11 @@ v8-compile-cache@^2.0.3:
1941019530
resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
1941119531
integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
1941219532

19533+
valid-url@^1.0.9:
19534+
version "1.0.9"
19535+
resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200"
19536+
integrity sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=
19537+
1941319538
validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.3:
1941419539
version "3.0.4"
1941519540
resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
@@ -19903,6 +20028,15 @@ windows-release@^3.1.0:
1990320028
dependencies:
1990420029
execa "^1.0.0"
1990520030

20031+
with-open-file@^0.1.6:
20032+
version "0.1.6"
20033+
resolved "https://registry.npmjs.org/with-open-file/-/with-open-file-0.1.6.tgz#0bc178ecab75f6baac8ae11c85e07445d690ea50"
20034+
integrity sha512-SQS05JekbtwQSgCYlBsZn/+m2gpn4zWsqpCYIrCHva0+ojXcnmUEPsBN6Ipoz3vmY/81k5PvYEWSxER2g4BTqA==
20035+
dependencies:
20036+
p-finally "^1.0.0"
20037+
p-try "^2.1.0"
20038+
pify "^4.0.1"
20039+
1990620040
word-wrap@^1.0.3:
1990720041
version "1.2.3"
1990820042
resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"

0 commit comments

Comments
 (0)