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

Parameter 'packageManager' doesn't work. #6

Closed p16i closed 9 years ago

p16i commented 9 years ago

My configuration:

checkDependencies: {
    packageManager: 'bower'
}
p16i commented 9 years ago

Sorry, it's my false. The configuration should be something like this

checkDependencies: {
    main: {
        options: {
             packageManager: 'bower'
        }
    }
}

By the way, thank you for creating such useful plugin. :+1:

mgol commented 9 years ago

Yeah, that's what Grunt multitasks require.

BTW, in the future please close an issue if you discover it's not valid after reporting. :) I'll do it myself here.

p16i commented 9 years ago

Thank you!