mgol / grunt-check-dependencies

Checks if currently installed npm dependencies are installed in the exact same versions that are specified in package.json
MIT License
15 stars 6 forks source link

When using `onlySpecified` it complains about .bin #7

Closed Page- closed 9 years ago

Page- commented 9 years ago
checkDependencies: {
    this: {
        options: {
            onlySpecified: true
        }
    }
}
grunt checkDependencies
Running "checkDependencies:this" (checkDependencies) task
>> Package .bin installed, though it shouldn't be
mgol commented 9 years ago

Yeah, I didn't test it on a project that had binaries in dependencies... Thanks for the report!

mgol commented 9 years ago

Fix is included in 0.9.0.

Page- commented 9 years ago

Thanks :)