UNPKG
gulp-shrt
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Make gulp syntax shorter
github.com/eveningkid/gulp-shrt
eveningkid/gulp-shrt
gulp-shrt
/
examples
/
watch
/
shrt.js
14 lines
(11 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var
shrt =
require
(
"gulp-shrt"
) shrt.
task
(
"watch"
, shrt.
watch
([ [
"client/js/**/*.coffee"
,
"!client/external/**/*.coffee"
],
"scripts"
], [
"client/img/**/*"
,
"images"
] ])) shrt.
task
(
"scripts"
,
function
(
) {
// ...
}) shrt.
task
(
"images"
,
function
(
) {
// ...
})