-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
46 lines (38 loc) · 974 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
41
42
43
44
45
46
'use strict'
const gulp = require('gulp')
const standard = require('gulp-standard')
const mocha = require('gulp-mocha')
const header = require('gulp-header')
const pkg = require('./package.json')
// Test
// ----
gulp.task('standard', () => {
return gulp.src(['./src/index.js', './test/*', 'gulpfile.js'])
.pipe(standard())
.pipe(standard.reporter('default', {
breakOnError: true
}))
})
gulp.task('mocha', ['standard'], () => {
return gulp
.src(['test/*.js'])
.pipe(mocha())
})
gulp.task('test', ['standard', 'mocha'])
// Build
// -----
gulp.task('build', () => {
const banner = [
'/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' *',
' * @version v<%= pkg.version %>',
' * @link <%= pkg.homepage %>',
' * @author <%= pkg.author %>',
' * @license <%= pkg.license %>',
' */',
''].join('\n')
return gulp.src('./src/index.js')
.pipe(header(banner, {pkg}))
.pipe(gulp.dest('./dist'))
})