willfarrell / alfred-pkgman-workflow

Package Repo Search
MIT License
699 stars 57 forks source link

Gulp search no longer returns results #68

Closed jeffbyrnes closed 9 years ago

jeffbyrnes commented 9 years ago

Found while checking out #63.

It seems that the Gulp.js registry has changed slightly, and is no longer being searched by the workflow.

Looking at the code for that search, it seems that page is now querying a (mirror?) Node.js repository with a set of keywords to filter for Gulp stuff:

return $http.get("http://registry.gulpjs.com/_search", {
    params: {
        q: "keywords:gulpplugin,gulpfriendly",
        fields: fields.join(","),
        from: start,
        size: size
    },
    transformResponse: $http.defaults.transformResponse.concat([formatData])
})

We’ll need to tweak the cache that’s created for Gulp (or, perhaps, stop using said cache).

LeKangouroo commented 9 years ago

+1

Link2k5 commented 9 years ago

+1

keeprock commented 9 years ago

+1. I'm also experiencing problem with Yeoman

willfarrell commented 9 years ago

Don't worry, I hear you guys. I will carve out some time this weekend to look at this.

jeffbyrnes commented 9 years ago

@willfarrell sorry I haven’t been able to help much lately. Overwhelmed with day job work!

willfarrell commented 9 years ago

@jeffbyrnes no worries.

Fixed in v3.05, let me know if there are any bugs.