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
- Host: GitHub
- URL: https://github.com/thomd/gulp-plugin-template
- Owner: thomd
- Created: 2017-04-05T19:10:17.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T19:20:53.000Z (about 9 years ago)
- Last Synced: 2025-03-30T19:15:00.044Z (about 1 year ago)
- Topics: gulp, nodejs
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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'))
})