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

Commit

Permalink
Added fs-extra as a direct dependency of Blendid
Browse files Browse the repository at this point in the history
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 `[email protected]` to remain the same as `browser-sync#fs-extra`.
  • Loading branch information
maoueh committed Apr 12, 2018
1 parent fea876c commit 56a83d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"del": "2.2.2",
"es6-promise": "^4.1.1",
"fancy-log": "^1.3.2",
"fs-extra": "^3.0.1",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.1",
"gulp-changed": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2351,7 +2351,7 @@ fs-exists-sync@^0.1.0:
version "0.1.0"
resolved "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"

[email protected]:
[email protected], fs-extra@^3.0.1:
version "3.0.1"
resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
dependencies:
Expand Down

0 comments on commit 56a83d0

Please sign in to comment.