forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.ts
84 lines (69 loc) · 1.62 KB
/
gulpfile.ts
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
import fs from 'fs-extra'
import gulp from 'gulp'
import rimraf from 'rimraf'
import webpack from 'webpack'
import cypressIcons from '@cypress/icons'
import webpackConfig from './webpack.config.js'
const pkg = require('./package.json')
const clean = (done) => {
rimraf('dist', done)
}
const manifest = (done) => {
gulp.src('app/manifest.json')
.pipe(gulp.dest('dist'))
.on('end', () => {
return fs.readJson('dist/manifest.json', function (err, json) {
json.version = pkg.version
return fs.writeJson('dist/manifest.json', json, { spaces: 2 }, done)
})
})
return null
}
const background = (cb) => {
const compiler = webpack(webpackConfig as webpack.Configuration)
compiler.run(cb)
}
const html = () => {
return gulp.src('app/**/*.html')
.pipe(gulp.dest('dist'))
}
const css = () => {
return gulp.src('app/**/*.css')
.pipe(gulp.dest('dist'))
}
const icons = () => {
return gulp.src([
cypressIcons.getPathToIcon('icon_16x16.png'),
cypressIcons.getPathToIcon('icon_19x19.png'),
cypressIcons.getPathToIcon('icon_38x38.png'),
cypressIcons.getPathToIcon('icon_48x48.png'),
cypressIcons.getPathToIcon('icon_128x128.png'),
])
.pipe(gulp.dest('dist/icons'))
}
const logos = () => {
return gulp.src([
cypressIcons.getPathToLogo('cypress-bw.png'),
])
.pipe(gulp.dest('dist/logos'))
}
const build = gulp.series(
clean,
gulp.parallel(
icons,
logos,
manifest,
background,
html,
css,
),
)
const watchBuild = () => {
return gulp.watch('app/**/*', build)
}
const watch = gulp.series(build, watchBuild)
module.exports = {
build,
clean,
watch,
}