UNPKG
mydomoathome
Version:
latest (0.3.18)
0.3.18
0.3.17
0.3.16
0.3.15
0.3.14
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
Imperihome ISS API gateway to Domoticz
github.com/empierre/MyDomoAtHome
empierre/MyDomoAtHome
mydomoathome
/
test
/
gulpfile.js
13 lines
(10 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// include gulp
var
gulp =
require
(
'gulp'
);
// include plug-ins
var
jshint =
require
(
'gulp-jshint'
);
// JS hint task
gulp.
task
(
'jshint'
,
function
(
) { gulp.
src
(
'../*.js'
) .
pipe
(
jshint
()) .
pipe
(jshint.
reporter
(
'default'
)); });