gulp-evil-icons icon indicating copy to clipboard operation
gulp-evil-icons copied to clipboard

Gulp plugin to use Evil Icons in your project

Results 1 gulp-evil-icons issues
Sort by recently updated
recently updated
newest added

I have simple task (coffeescript): ``` gulp.task 'views:cache', -> gulp.src config.resources.view + '/ng/**/*.html' .pipe debug(title: 'before') .pipe evilIcons() .pipe debug(title: 'after') .pipe viewCache({root:'/views/', module: 'app'}) .pipe gulp.dest(config.public.app) ``` Before i...