I'm trying out a plugin called gulp-buddy.js. What's the best way to load it using gulp-load-plugins?
I don't really want to write plugins['buddy.js'], and changing gulp-load-plugins to replace /\.(\w)/g with the uppercase equivalent would cause collisions (is that an issue?).
I guess the best option I can think of would be to rename it:
I'm trying out a plugin called gulp-buddy.js. What's the best way to load it using gulp-load-plugins?
I don't really want to write
plugins['buddy.js']
, and changing gulp-load-plugins to replace/\.(\w)/g
with the uppercase equivalent would cause collisions (is that an issue?).I guess the best option I can think of would be to rename it:
Is that the best approach, though?