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

Commit 56a83d0

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). Used version `fs-extra@3.0.1` to remain the same as `browser-sync#fs-extra`.
1 parent fea876c commit 56a83d0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
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": "^3.0.1",
3637
"gulp": "3.9.1",
3738
"gulp-autoprefixer": "3.1.1",
3839
"gulp-changed": "^2.0.0",

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2351,7 +2351,7 @@ fs-exists-sync@^0.1.0:
23512351
version "0.1.0"
23522352
resolved "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
23532353

2354-
fs-extra@3.0.1:
2354+
fs-extra@3.0.1, fs-extra@^3.0.1:
23552355
version "3.0.1"
23562356
resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
23572357
dependencies:

0 commit comments

Comments
 (0)