-
Notifications
You must be signed in to change notification settings - Fork 28
/
gulpfile.js
78 lines (58 loc) · 1.6 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/******
*
* IMPORTANTE
*
* Este archivo usa una version antigua de Gulp que puede tener problemas de compatibilidad con node
*
* si tienes problemas, sigue las instrucciones detalladas en el repositorio original
*
* https://github.com/siddharta1337/Desarrollo-web-Control-de-calidad-automatizado
*
*/
var gulp = require('gulp');
var webserver = require('gulp-webserver');
var opn = require('opn');
var phantom = require("gulp-phantom");
var casperJs = require('gulp-casperjs');
var csslint = require('gulp-csslint');
var jslint = require('gulp-jslint');
var server = {
host: 'localhost',
port: '8001'
}
gulp.task('webserver', function () {
gulp.src('app')
.pipe(webserver({
host: server.host,
port: server.port,
livereload: true,
directoryListing: false
}));
});
gulp.task('openbrowser', function () {
opn('http://' + server.host + ':' + server.port);
});
gulp.task('watch', function () {
gulp.watch('app/*.html');
gulp.watch('app/css/*.css');
});
gulp.task('phantom', function () {
gulp.src("./casper/*.js")
.pipe(phantom())
.pipe(gulp.dest("./test_data/"));
})
gulp.task('casper' , function(){
gulp.src("./casper/*.js")
.pipe(casperJs());
})
gulp.task('validar-js' , function(){
gulp.src('app/script/*.js')
.pipe(jslint())
.pipe(jslint.reporter('stylish'));
})
gulp.task('validar-css' , function(){
gulp.src('app/css/*.css')
.pipe(csslint())
.pipe(csslint.formatter(require('csslint-stylish')))
})
gulp.task('default', ['webserver', 'watch', 'openbrowser'])