Skip to content

Commit 816d475

Browse files
renovate[bot]GatsbyJS Bot
authored and
GatsbyJS Bot
committedAug 23, 2019
fix: update dependency chokidar to v3 (#16975)
1 parent 90ac3a5 commit 816d475

File tree

6 files changed

+99
-21
lines changed

6 files changed

+99
-21
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"babel-eslint": "^10.0.2",
88
"babel-jest": "^24.9.0",
99
"chalk": "^2.4.2",
10-
"chokidar": "^1.7.0",
10+
"chokidar": "^3.0.2",
1111
"cross-env": "^5.2.0",
1212
"danger": "^8.0.0",
1313
"eslint": "^5.16.0",

‎packages/gatsby-dev-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@babel/runtime": "^7.5.5",
14-
"chokidar": "^1.7.0",
14+
"chokidar": "^3.0.2",
1515
"configstore": "^3.1.2",
1616
"del": "^3.0.0",
1717
"execa": "^1.0.0",

‎packages/gatsby-page-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@babel/runtime": "^7.5.5",
2424
"bluebird": "^3.5.5",
25-
"chokidar": "2.1.8",
25+
"chokidar": "3.0.2",
2626
"fs-exists-cached": "^1.0.0",
2727
"glob": "^7.1.4",
2828
"lodash": "^4.17.15",

‎packages/gatsby-source-filesystem/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@babel/runtime": "^7.5.5",
1111
"better-queue": "^3.8.10",
1212
"bluebird": "^3.5.5",
13-
"chokidar": "2.1.8",
13+
"chokidar": "3.0.2",
1414
"file-type": "^10.11.0",
1515
"fs-extra": "^5.0.0",
1616
"gatsby-core-utils": "^1.0.6",

‎packages/gatsby/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"cache-manager": "^2.10.0",
4141
"cache-manager-fs-hash": "^0.0.7",
4242
"chalk": "^2.4.2",
43-
"chokidar": "2.1.8",
43+
"chokidar": "3.0.2",
4444
"common-tags": "^1.8.0",
4545
"compression": "^1.7.4",
4646
"convert-hrtime": "^2.0.0",

‎yarn.lock

+94-16
Original file line numberDiff line numberDiff line change
@@ -4154,6 +4154,14 @@ anymatch@^2.0.0:
41544154
micromatch "^3.1.4"
41554155
normalize-path "^2.1.1"
41564156

4157+
anymatch@^3.0.1:
4158+
version "3.0.3"
4159+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.0.3.tgz#2fb624fe0e84bccab00afee3d0006ed310f22f09"
4160+
integrity sha512-c6IvoeBECQlMVuYUjSwimnhmztImpErfxJzWZhIQinIvQWoGOnB0dLIgifbPHQt5heS6mNlaZG16f06H3C8t1g==
4161+
dependencies:
4162+
normalize-path "^3.0.0"
4163+
picomatch "^2.0.4"
4164+
41574165
apache-md5@1.1.2:
41584166
version "1.1.2"
41594167
resolved "https://registry.yarnpkg.com/apache-md5/-/apache-md5-1.1.2.tgz#ee49736b639b4f108b6e9e626c6da99306b41692"
@@ -5153,6 +5161,11 @@ binary-extensions@^1.0.0:
51535161
version "1.11.0"
51545162
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
51555163

5164+
binary-extensions@^2.0.0:
5165+
version "2.0.0"
5166+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c"
5167+
integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
5168+
51565169
bl@^1.0.0:
51575170
version "1.2.2"
51585171
resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c"
@@ -5300,6 +5313,13 @@ braces@^2.3.0, braces@^2.3.1, braces@^2.3.2:
53005313
split-string "^3.0.2"
53015314
to-regex "^3.0.1"
53025315

5316+
braces@^3.0.2:
5317+
version "3.0.2"
5318+
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
5319+
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
5320+
dependencies:
5321+
fill-range "^7.0.1"
5322+
53035323
brfs@^1.4.0:
53045324
version "1.6.1"
53055325
resolved "https://registry.yarnpkg.com/brfs/-/brfs-1.6.1.tgz#b78ce2336d818e25eea04a0947cba6d4fb8849c3"
@@ -5951,26 +5971,22 @@ cheerio@^1.0.0-rc.3:
59515971
lodash "^4.15.0"
59525972
parse5 "^3.0.1"
59535973

5954-
chokidar@2.1.8, chokidar@^2.1.6:
5955-
version "2.1.8"
5956-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
5957-
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
5974+
chokidar@3.0.2, chokidar@^3.0.2:
5975+
version "3.0.2"
5976+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.0.2.tgz#0d1cd6d04eb2df0327446188cd13736a3367d681"
5977+
integrity sha512-c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA==
59585978
dependencies:
5959-
anymatch "^2.0.0"
5960-
async-each "^1.0.1"
5961-
braces "^2.3.2"
5962-
glob-parent "^3.1.0"
5963-
inherits "^2.0.3"
5964-
is-binary-path "^1.0.0"
5965-
is-glob "^4.0.0"
5979+
anymatch "^3.0.1"
5980+
braces "^3.0.2"
5981+
glob-parent "^5.0.0"
5982+
is-binary-path "^2.1.0"
5983+
is-glob "^4.0.1"
59665984
normalize-path "^3.0.0"
5967-
path-is-absolute "^1.0.0"
5968-
readdirp "^2.2.1"
5969-
upath "^1.1.1"
5985+
readdirp "^3.1.1"
59705986
optionalDependencies:
5971-
fsevents "^1.2.7"
5987+
fsevents "^2.0.6"
59725988

5973-
chokidar@^1.6.0, chokidar@^1.7.0:
5989+
chokidar@^1.6.0:
59745990
version "1.7.0"
59755991
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
59765992
dependencies:
@@ -6022,6 +6038,25 @@ chokidar@^2.0.4:
60226038
optionalDependencies:
60236039
fsevents "^1.2.7"
60246040

6041+
chokidar@^2.1.6:
6042+
version "2.1.8"
6043+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
6044+
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
6045+
dependencies:
6046+
anymatch "^2.0.0"
6047+
async-each "^1.0.1"
6048+
braces "^2.3.2"
6049+
glob-parent "^3.1.0"
6050+
inherits "^2.0.3"
6051+
is-binary-path "^1.0.0"
6052+
is-glob "^4.0.0"
6053+
normalize-path "^3.0.0"
6054+
path-is-absolute "^1.0.0"
6055+
readdirp "^2.2.1"
6056+
upath "^1.1.1"
6057+
optionalDependencies:
6058+
fsevents "^1.2.7"
6059+
60256060
chownr@^1.0.1:
60266061
version "1.0.1"
60276062
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
@@ -9343,6 +9378,13 @@ fill-range@^4.0.0:
93439378
repeat-string "^1.6.1"
93449379
to-regex-range "^2.1.0"
93459380

9381+
fill-range@^7.0.1:
9382+
version "7.0.1"
9383+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
9384+
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
9385+
dependencies:
9386+
to-regex-range "^5.0.1"
9387+
93469388
finalhandler@1.1.1:
93479389
version "1.1.1"
93489390
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
@@ -9788,6 +9830,11 @@ fsevents@^1.2.7:
97889830
nan "^2.9.2"
97899831
node-pre-gyp "^0.10.0"
97909832

9833+
fsevents@^2.0.6:
9834+
version "2.0.7"
9835+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a"
9836+
integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==
9837+
97919838
function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1:
97929839
version "1.1.1"
97939840
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
@@ -11664,6 +11711,13 @@ is-binary-path@^1.0.0:
1166411711
dependencies:
1166511712
binary-extensions "^1.0.0"
1166611713

11714+
is-binary-path@^2.1.0:
11715+
version "2.1.0"
11716+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
11717+
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
11718+
dependencies:
11719+
binary-extensions "^2.0.0"
11720+
1166711721
is-buffer@^1.1.4, is-buffer@^1.1.5, is-buffer@~1.1.1:
1166811722
version "1.1.6"
1166911723
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
@@ -11912,6 +11966,11 @@ is-number@^4.0.0:
1191211966
version "4.0.0"
1191311967
resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
1191411968

11969+
is-number@^7.0.0:
11970+
version "7.0.0"
11971+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
11972+
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
11973+
1191511974
is-obj@^1.0.0, is-obj@^1.0.1:
1191611975
version "1.0.1"
1191711976
resolved "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
@@ -16334,6 +16393,11 @@ physical-cpu-count@^2.0.0:
1633416393
version "2.0.0"
1633516394
resolved "https://registry.yarnpkg.com/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz#18de2f97e4bf7a9551ad7511942b5496f7aba660"
1633616395

16396+
picomatch@^2.0.4:
16397+
version "2.0.7"
16398+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6"
16399+
integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==
16400+
1633716401
pidtree@^0.3.0:
1633816402
version "0.3.0"
1633916403
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b"
@@ -17719,6 +17783,13 @@ readdirp@^2.0.0, readdirp@^2.2.1:
1771917783
micromatch "^3.1.10"
1772017784
readable-stream "^2.0.2"
1772117785

17786+
readdirp@^3.1.1:
17787+
version "3.1.2"
17788+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.1.2.tgz#fa85d2d14d4289920e4671dead96431add2ee78a"
17789+
integrity sha512-8rhl0xs2cxfVsqzreYCvs8EwBfn/DhVdqtoLmw19uI3SC5avYX9teCurlErfpPXGmYtMHReGaP2RsLnFvz/lnw==
17790+
dependencies:
17791+
picomatch "^2.0.4"
17792+
1772217793
readline-sync@^1.4.9:
1772317794
version "1.4.9"
1772417795
resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz#3eda8e65f23cd2a17e61301b1f0003396af5ecda"
@@ -20421,6 +20492,13 @@ to-regex-range@^2.1.0:
2042120492
is-number "^3.0.0"
2042220493
repeat-string "^1.6.1"
2042320494

20495+
to-regex-range@^5.0.1:
20496+
version "5.0.1"
20497+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
20498+
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
20499+
dependencies:
20500+
is-number "^7.0.0"
20501+
2042420502
to-regex@^3.0.1, to-regex@^3.0.2:
2042520503
version "3.0.2"
2042620504
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"

0 commit comments

Comments
 (0)
Please sign in to comment.