Closed bildlich closed 10 years ago
Can you enable debugging and paste the output?
gulp.task("bower-files", function(){
gulpBowerFiles({ debugging: true })
.pipe(gulp.dest("assets/scripts"));
});
[gulp] PackageCollection add jquery.kinetic bower_components/jquery.kinetic
[gulp] 'bower-files' errored after 2.53 ms Missing positive glob
The jquery.kinetic
package has no main file defined, you have to add it in the overrides section:
{
"name": "myProject",
"private": true,
"dependencies": {
"jquery.kinetic": "~2.0.1"
},
"devDependencies": {},
"overrides": {
"jquery.kinetic": {
"main": "jquery.kinetic.js"
}
}
}
It seems that the maintainer added the bower.json after the v2.0.1 release.
This was it. Thanks!
Gulp says
even though my bower.json does contain dependencies.
Here's the bower.json:
Here's the Gulp Task:
Am I missing something here?