Skip to content

Commit cf52e7f

Browse files
committed
'simplify'
1 parent d76a2fe commit cf52e7f

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ gulp.task('watch', function () {
7878
### [gup] Gulp Pipe
7979

8080
```javascript
81-
.pipe(${1:plugin}($2))
82-
$3
81+
.pipe(${1:plugin}($2))$3
8382
```
8483
### [guw2] to [guw5] Gulp Task Watch, 2 to 5 tasks as default
8584

@@ -160,8 +159,7 @@ gulp.task 'watch', ->
160159
### [cgup] Coffee Gulp Pipe
161160

162161
```coffeescript
163-
.pipe ${1:plugin}($2)
164-
$3
162+
.pipe ${1:plugin}($2)$3
165163
```
166164

167165
### [cguw2] to [cguw5] Gulp Task Watch, 2 to 5 tasks as default

snippets/Cofffee-Gulp-Pipe.cson

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"Coffee Gulp Pipe":
33
prefix: "cgup"
44
body:"""
5-
.pipe ${1:plugin}($2)
6-
$3
5+
.pipe ${1:plugin}($2)$3
76
"""

snippets/Gulp-Pipe.cson

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"Gulp Pipe":
33
prefix: 'gup'
44
body:"""
5-
.pipe(${1:plugin}($2))
6-
$3
5+
.pipe(${1:plugin}($2));$3
76
"""

0 commit comments

Comments
 (0)