-
Notifications
You must be signed in to change notification settings - Fork 24
/
gulpfile.js
148 lines (132 loc) · 3.97 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
var gulp = require( "gulp" );
var fileImports = require( "gulp-imports" );
var header = require( "gulp-header" );
var hintNot = require( "gulp-hint-not" );
var istanbul = require( "gulp-istanbul" );
var uglify = require( "gulp-uglify" );
var rename = require( "gulp-rename" );
var plato = require( "gulp-plato" );
var gutil = require( "gulp-util" );
var express = require( "express" );
var path = require( "path" );
var pkg = require( "./package.json" );
var open = require( "open" ); //jshint ignore:line
var port = 3080;
var allSrcFiles = "./src/**/*.js";
var allTestFiles = "./spec/**/*.spec.js";
var banner = [ "/**",
" * <%= pkg.name %> - <%= pkg.description %>",
" * Author: <%= pkg.author %>",
" * Version: v<%= pkg.version %>",
" * Url: <%= pkg.homepage %>",
" * License(s): <% pkg.licenses.forEach(function( license, idx ){ %><%= license.type %><% if(idx !== pkg.licenses.length-1) { %>, <% } %><% }); %>",
" */",
""
].join( "\n" );
gulp.task( "combine", [ "format" ], function() {
return gulp.src( [ "./src/monologue.js" ] )
.pipe( header( banner, {
pkg: pkg
} ) )
.pipe( fileImports() )
.pipe( hintNot() )
.pipe( gulp.dest( "./lib/" ) )
.pipe( uglify( {
compress: {
negate_iife: false //jshint ignore:line
}
} ) )
.pipe( header( banner, {
pkg: pkg
} ) )
.pipe( rename( "monologue.min.js" ) )
.pipe( gulp.dest( "./lib/" ) );
} );
gulp.task( "default", [ "combine" ] );
var mocha = require( "gulp-spawn-mocha" );
gulp.task( "test", function() {
return gulp.src( [ "spec/**/*.spec.js" ], { read: false } )
.pipe( mocha( {
require: [ "spec/helpers/node-setup.js" ],
reporter: "spec",
colors: true,
inlineDiffs: true,
debug: false
} ) )
.on( "error", console.warn.bind( console ) );
} );
gulp.task( "report", function() {
return gulp.src( "./lib/monologue.js" )
.pipe( plato( "report" ) );
} );
var createServer = function( port ) {
var p = path.resolve( "./" );
var app = express();
app.use( express.static( p ) );
app.listen( port, function() {
gutil.log( "Listening on", port );
} );
return {
app: app
};
};
var servers;
gulp.task( "server", [ "combine", "report" ], function() {
if ( !servers ) {
servers = createServer( port );
}
open( "http://localhost:" + port + "/index.html" );
} );
gulp.task( "watch", [ "default", "mocha" ], function() {
gulp.watch( "src/**/*", [ "default" ] );
gulp.watch( "{lib,spec}/**/*", [ "mocha" ] );
} );
var jscs = require( "gulp-jscs" );
var gulpChanged = require( "gulp-changed" );
gulp.task( "format", [ "jshint" ], function() {
return gulp.src( [ "**/*.js", "!node_modules/**" ] )
.pipe( jscs( {
configPath: ".jscsrc",
fix: true
} ) )
.pipe( gulpChanged( ".", { hasChanged: gulpChanged.compareSha1Digest } ) )
.pipe( gulp.dest( "." ) );
} );
var jshint = require( "gulp-jshint" );
var stylish = require( "jshint-stylish" );
gulp.task( "jshint", function() {
return gulp.src( allSrcFiles )
.on( "error", function( error ) {
gutil.log( gutil.colors.red( error.message + " in " + error.fileName ) );
this.end();
} )
.pipe( jshint() )
.pipe( jshint.reporter( stylish ) )
.pipe( jshint.reporter( "fail" ) );
} );
gulp.task( "coverage", [ "format" ], function( cb ) {
return gulp.src( [ allTestFiles ], { read: false } )
.pipe( mocha( {
r: "spec/helpers/node-setup.js",
R: "spec",
istanbul: {
x: "spec/**/*"
}
} ) );
} );
// gulp.task( "coverage", [ "format" ], function() {
// gulp.src( [ allSrcFiles ] )
// .pipe( istanbul() ) // Covering files
// .pipe( istanbul.hookRequire() ) // Force `require` to return covered files
// .on( "finish", function() {
// gulp.src( [ "./spec/helpers/node-setup.js", allTestFiles ] )
// .pipe( mocha() )
// .pipe( istanbul.writeReports() ) // Creating the reports after tests runned
// .on( "end", function() {
// process.exit();
// } );
// } );
// } );
gulp.task( "show-coverage", function() {
open( "./coverage/lcov-report/index.html" );
} );