An open API service indexing awesome lists of open source software.

https://github.com/thomd/gulp-plugin-template

A starter template for gulp plugins
https://github.com/thomd/gulp-plugin-template

gulp nodejs

Last synced: 30 days ago
JSON representation

A starter template for gulp plugins

Awesome Lists containing this project

README

          

# Gulp Plugin Template

A starter template for a [gulp](http://gulpjs.com/) plugin.

## Install

git clone https://github.com/thomd/gulp-plugin-template.git
cd gulp-plugin-template
npm link
cd /path/to/project
npm link gulp-plugin-template

## Usage

Create the following `gulpfile.js` file

var gulp = require('gulp')
var plugin = require('gulp-plugin-template')

gulp.task('default', function() {
return gulp.src('./src/*')
.pipe(plugin())
.pipe(gulp.dest('dest'))
})