8000 Fix issue #58 by gartner · Pull Request #59 · npm/fstream · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Fix issue #58 #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix issue #58
A missing . in a version constraint. Causing issues at least when using composer (a php tool) and asset-packagist.org.
  • Loading branch information
gartner authored Jan 22, 2018
commit a1c3a6b1bd640cff19c62d62d022e43cec84bb23
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"graceful-fs": "^4.1.2",
"inherits": "~2.0.0",
"mkdirp": ">=0.5 0",
"mkdirp": ">=0.5.0",
"rimraf": "2"
},
"devDependencies": {
Expand Down
0