Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/filipelinhares/gulp-sublime-snippets
Gulp snippets for Sublime Text
https://github.com/filipelinhares/gulp-sublime-snippets
Last synced: 28 days ago
JSON representation
Gulp snippets for Sublime Text
- Host: GitHub
- URL: https://github.com/filipelinhares/gulp-sublime-snippets
- Owner: filipelinhares
- Created: 2014-01-30T18:02:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-23T10:30:43.000Z (over 10 years ago)
- Last Synced: 2024-04-14T11:01:55.816Z (7 months ago)
- Homepage: http://goo.gl/4zBvqT
- Size: 264 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ***[Atenction]***
## This project now is merged with [Sublime Gulp](https://github.com/NicoSantangelo/sublime-gulp)#[Gulp](http:www.gulpjs.com) Snippets for Sublime Text
![Gulp Snippets](https://imagizer.imageshack.us/v2/800x307q90/842/1dl6.jpg)
##Even more. Speed. Efficiency. Simplicity.
###vargulp
`var gulp = require('gulp-name');`###pipe
`.pipe(name('file'))`###gulps - [Docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpsrcglobs-options)
```
gulp.src('scriptFiles')
.pipe(name('file'))
```###gulpt - [Docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulptaskname-deps-fn)
```
gulp.task('name',['tasks'], function() {
// content
});
```###gulpd - [Docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpdestpath)
```
.pipe(gulp.dest('folder'));
```###gulpw - [Docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpwatchglob-opts-tasks)
`gulp.watch('file', ['tasks']);`###gulpwcb - [Docs](https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpwatchglob-opts-cb)
```
gulp.watch('file', function(event) {
console.log(' File '+event.path+' was '+event.type+', running tasks...');
});
```#####Update - Just Remove and Install again.