-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -295,8 +295,6 @@ inq.getDevDependencies = function(a) { | |
var devDependencies = {}; | ||
|
||
// default dependencies | ||
devDependencies["mkdirp"] = "^0.5.0"; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
wilzbach
Member
|
||
devDependencies["browserify"] = "6.x"; | ||
|
||
if (a.coverage) { | ||
devDependencies["blanket"] = "^1.1.6"; | ||
|
4 comments
on commit ffe3c2a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Seb
Sorry about committing without a PR.
I removed them because I though they were duplicated, as I installed my modified version of slush-biojs and they got installed without problems...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worries - it's just a nice policy in the open source world, so that something like this doesn't happen :)
@ayusharma does it work again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi all
What do you think about installing mkdirp with the script 'install' (as a post-install procedure)?
...
"scripts": {
"install" : "npm install -g mkdirp"
}
...
I checked that and it works...
These dependencies helps in scaffolding of package.json . I think after removing them from here, slush will not include these in package.json. and generates an error as
Please take a look. :)