KO
|
EN
gitlite โ search
Search
#javascript
#python
#android
#typescript
#opencv
#game
#kotlin
#java
#unity
#css
#react
#library
gulpicon
โ 67
Open GitHub โ
A gulp task wrapper for grunticon-lib.
Download README (.md)
Explore Similar Repositories
angularapp-gulp-boilerplate
:
A boilerplate to start a webapp with Gulp automated tasks
gulp-sass-bulk-import
:
gulp task to allow importing directories in your SCSS
react-starter-kit
:
React starter kit - no need for grunt/gulp/gloop/glugle/gleffy/gloran/whatever task runner comes out next week
gulp-tsd
:
Gulp plugin to automate TSD and TypeScript definition related tasks
sass-starter-pack
:
Sass starter files using Gulp v4.0.0 ๐ฅ
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
gulpicon
?
Download (.md)
:warning: This project is archived and the repository is no longer maintained. # Gulpicon A [gulp](https://github.com/gulpjs/gulp) task wrapper for [grunticon-lib](https://github.com/filamentgroup/grunticon-lib). ## Install To install to your project and save the dependency in `package.json`: ``` npm install -s gulpicon ``` ## Usage ```javascript var glob = require("glob"); var gulp = require("gulp"); var gulpicon = require("gulpicon/tasks/gulpicon"); // grab the config, tack on the output destination var config = require("./example/config.js"); config.dest = "example/output"; // grab the file paths var files = glob.sync("example/svg/*.svg"); // set up the gulp task gulp.task("icons", gulpicon(files, config)); ``` ## Sample test ``` # Checkout the project git clone git@github.com:filamentgroup/gulpicon.git cd gulpicon # Run the sample npm install npx gulp icons ``` Output will now be in `example/output/`. ## TODO 1. Move to plugin/operation on stream of files, requires alterations to `grunticon-lib`.