Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/benjaminreid/gulp

Some commonly used Gulp tasks
https://github.com/benjaminreid/gulp

Last synced: 3 days ago
JSON representation

Some commonly used Gulp tasks

Awesome Lists containing this project

README

        

# gulp
Some commonly used Gulp tasks

## Installation

```
npm install --save-dev @benjaminreid/gulp
```

## Usage

```
var gulp = require('gulp');
var tasks = require('@benjaminreid/gulp');

gulp.task('scripts', function() {
return tasks.es6({ src: './scripts/main.js', file: 'main.js' })
.pipe(gulp.dest('./dist'));
});

gulp.task('styles', function() {
return tasks.sass({ src: './styles/main.scss', file: 'main.css' })
.pipe(gulp.dest('./dist'));
});
```