forked from substantial/updeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
95 lines (75 loc) · 2.08 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
'use strict'
/* eslint strict:0, no-var:0, func-names:0 */
var path = require('path')
var gulp = require('gulp')
var babel = require('gulp-babel')
var eslint = require('gulp-eslint')
var mocha = require('gulp-mocha')
var rimraf = require('rimraf')
var webpack = require('webpack-stream')
var KarmaServer = require('karma').Server
var createWebpackConfig = require('./createWebpackConfig.js')
// Initialize the babel transpiler so ES2015 files gets compiled
// when they're loaded
require('babel-core/register')
gulp.task('clean', cb => {
rimraf('./dist', cb)
})
gulp.task('static', () =>
gulp
.src(['*.js', 'lib/**/*.js', 'test/**/*.js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError())
)
gulp.task('test', ['test:karma', 'test:node'])
gulp.task('test:node', () =>
gulp.src('test/**/*.js').pipe(mocha({ reporter: 'dot' }))
)
gulp.task('test:karma', done => {
new KarmaServer(
{
configFile: path.join(__dirname, 'karma.conf.js'),
singleRun: true,
},
done
).start()
})
gulp.task('babel', () =>
gulp
.src('lib/**/*.js')
.pipe(babel())
.pipe(gulp.dest('dist'))
)
gulp.task('watch', () => {
gulp.start(['test:node'])
gulp.watch(['lib/**/*.js', 'test/**/*.js'], ['test:node'])
new KarmaServer({
configFile: path.join(__dirname, 'karma.conf.js'),
}).start()
})
gulp.task('webpack', ['webpack:standalone', 'webpack:standalone:min'])
gulp.task('webpack:standalone', () => {
var config = createWebpackConfig({ filename: 'updeep-standalone.js' })
return gulp
.src('lib/index.js')
.pipe(webpack(config))
.pipe(gulp.dest('dist/umd/'))
})
gulp.task('webpack:standalone:min', () => {
var config = createWebpackConfig({
filename: 'updeep-standalone.min.js',
minify: true,
env: 'production',
})
return gulp
.src('lib/index.js')
.pipe(webpack(config))
.pipe(gulp.dest('dist/umd/'))
})
gulp.task('build', ['babel', 'webpack'])
gulp.task('build:clean', ['clean'], done => {
gulp.start('build', done)
})
gulp.task('prepublish', ['build:clean'])
gulp.task('default', ['static', 'test'])