forked from LeanKit-Labs/lux.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
128 lines (117 loc) · 3.48 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
var gulp = require( "gulp" );
var gutil = require( "gulp-util" );
var sourcemaps = require( "gulp-sourcemaps" );
var rename = require( "gulp-rename" );
var header = require( "gulp-header" );
var imports = require( "gulp-imports" );
var pkg = require( "./package.json" );
var hintNot = require( "gulp-hint-not" );
var uglify = require( "gulp-uglify" );
var _ = require( "lodash" );
var babel = require( "gulp-babel" );
var jshint = require( "gulp-jshint" );
var jscs = require( "gulp-jscs" );
var gulpChanged = require( "gulp-changed" );
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 %> Copyright (c) <%= ( new Date() ).getFullYear() %> LeanKit<% if(idx !== pkg.licenses.length-1) { %>, <% } %><% }); %>",
" */",
"" ].join( "\n" );
gulp.task( "build:es6", [ "format" ], function() {
return gulp.src( "src/lux.js" )
.pipe( imports() )
.pipe( hintNot() )
.pipe( header( banner, {
pkg: pkg
} ) )
.pipe( rename( "lux-es6.js" ) )
.pipe( gulp.dest( "lib/" ) );
} );
gulp.task( "build:es5", [ "format" ], function() {
return gulp.src( "src/lux.js" )
.pipe( imports() )
.pipe( hintNot() )
.pipe( sourcemaps.init() )
.pipe( babel( {
auxiliaryComment: "istanbul ignore next",
compact: false,
blacklist: [ "strict" ],
experimental: true
} ) )
.pipe( header( banner, {
pkg: pkg
} ) )
.pipe( sourcemaps.write() )
.pipe( rename( "lux.js" ) )
.pipe( gulp.dest( "lib/" ) )
.pipe( uglify( {
compress: {
negate_iife: false
}
} ) )
.pipe( header( banner, {
pkg: pkg
} ) )
.pipe( rename( "lux.min.js" ) )
.pipe( gulp.dest( "lib/" ) );
} );
gulp.task( "default", [ "build:es6", "build:es5" ] );
function runTests( options, done ) {
var karma = require( "karma" ).server;
karma.start( _.extend( {
configFile: __dirname + "/karma.conf.js",
singleRun: true
// no-op keeps karma from process.exit'ing gulp
}, options ), done || function() {} );
}
gulp.task( "test", [ "format" ], function( done ) {
// There are issues with the osx reporter keeping
// the node process running, so this forces the main
// test task to not show errors in a notification
runTests( { reporters: [ "spec" ] }, function( err ) {
if ( err !== 0 ) {
// Exit with the error code
process.exit( err );
} else {
done( null );
}
} );
} );
var mocha = require( "gulp-spawn-mocha" );
gulp.task( "mocha", 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( "jshint", function() {
return gulp.src( [ "src/**/*.js", "spec/**/*.spec.js" ] )
.pipe( jshint() )
.pipe( jshint.reporter( "jshint-stylish" ) )
.pipe( jshint.reporter( "fail" ) );
} );
gulp.task( "format", [ "jshint" ], function() {
return gulp.src( [ "**/*.js", "!node_modules/**" ] )
.pipe( jscs( {
configPath: ".jscsrc",
fix: true
} ) )
.on( "error", function( error ) {
gutil.log( gutil.colors.red( error.message ) );
this.end();
} )
.pipe( gulpChanged( ".", { hasChanged: gulpChanged.compareSha1Digest } ) )
.pipe( gulp.dest( "." ) );
} );
gulp.task( "watch", function() {
gulp.watch( "src/**/*", [ "default" ] );
gulp.watch( "{lib,spec}/**/*", [ "mocha" ] );
} );