Skip to content
This repository was archived by the owner on Sep 15, 2023. It is now read-only.

Commit 1ab86bf

Browse files
committed
Added fs-extra as a direct dependency of Blendid
The fs-extra is required directly by Blendid in file `gulpfile.js/tasks/replace-files.js`. However, this dependency was expected to be present transitively via `browser-sync`. Since it's a direct dependency of Blendid, it should be listed as such in the `package.json`. By not being present, it was causing us problem when using Yarn workspaces where `fs-extra` was not resolvable correctly ( because it was in different `node_modules` folder).
1 parent fea876c commit 1ab86bf

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"del": "2.2.2",
3434
"es6-promise": "^4.1.1",
3535
"fancy-log": "^1.3.2",
36+
"fs-extra": "^5.0.0",
3637
"gulp": "3.9.1",
3738
"gulp-autoprefixer": "3.1.1",
3839
"gulp-changed": "^2.0.0",

yarn.lock

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2359,6 +2359,14 @@ fs-extra@3.0.1:
23592359
jsonfile "^3.0.0"
23602360
universalify "^0.1.0"
23612361

2362+
fs-extra@^5.0.0:
2363+
version "5.0.0"
2364+
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd"
2365+
dependencies:
2366+
graceful-fs "^4.1.2"
2367+
jsonfile "^4.0.0"
2368+
universalify "^0.1.0"
2369+
23622370
fs.realpath@^1.0.0:
23632371
version "1.0.0"
23642372
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -3473,6 +3481,12 @@ jsonfile@^3.0.0:
34733481
optionalDependencies:
34743482
graceful-fs "^4.1.6"
34753483

3484+
jsonfile@^4.0.0:
3485+
version "4.0.0"
3486+
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
3487+
optionalDependencies:
3488+
graceful-fs "^4.1.6"
3489+
34763490
jsonfile@~1.1.0:
34773491
version "1.1.1"
34783492
resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-1.1.1.tgz#da4fd6ad77f1a255203ea63c7bc32dc31ef64433"

0 commit comments

Comments
 (0)