forked from shouldjs/should.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
40 lines (34 loc) · 968 Bytes
/
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
var gulp = require('gulp');
var $ = require('gulp-load-plugins')({lazy: false});
var source = require('vinyl-source-stream2');
var browserify = require('browserify');
var path = require('path');
var pkg = require('./package.json');
var banner = [
'/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' * @version v<%= pkg.version %>',
' * @author <%= pkg.author %>',
' * @link <%= pkg.homepage %>',
' * @license <%= pkg.license %>',
' */',
''].join('\n');
gulp.task('script', function() {
var bundleStream = browserify({
entries: './lib/should.js',
builtins: null,
insertGlobals: false,
detectGlobals: false,
standalone: 'Should',
fullPaths: false
})
.bundle();
return bundleStream
.pipe(source('should.js'))
.pipe($.header(banner, {pkg: pkg}))
.pipe(gulp.dest('./'))
.pipe($.uglify())
.pipe($.header(banner, {pkg: pkg}))
.pipe($.rename('should.min.js'))
.pipe(gulp.dest('./'));
});