Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/benjaminreid/gulp
- Owner: benjaminreid
- Created: 2015-10-21T09:13:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-13T16:12:53.000Z (almost 9 years ago)
- Last Synced: 2024-08-09T10:17:00.287Z (5 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'));
});
```