gulpjs / gulpjs.github.io

The gulp website
http://gulpjs.com
45 stars 44 forks source link

Some Gulp plugins don't appear in search results #32

Closed revelt closed 8 years ago

revelt commented 8 years ago

Searching for contrib doesn't yield any results, for example, gulp-contrib-clean is not appearing in the search results, although it's appearing on npm directly.

leo commented 8 years ago

The plugin you're talking about doesn't have the "gulpplugin" keyword in its package.json. Therefore it won't appear in the plugin list.

Number 5 here.

revelt commented 8 years ago

aha!

phated commented 8 years ago

Also note that "contrib" doesn't mean anything in the gulp ecosystem like it does in grunt's. That module is not recommended and you probably want to use the "del" module directly like we recommend in most of our docs.

revelt commented 8 years ago

thank you for advice!