forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
31 lines (25 loc) · 753 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
// @ts-check
const gulp = require('gulp')
const { graphQlOperations, schema, watchGraphQlOperations } = require('./client/shared/gulpfile')
const { webpack: webWebpack, developmentServer, generate, watchGenerators } = require('./client/web/gulpfile')
/**
* Generates files needed for builds whenever files change.
*/
const watchGenerate = gulp.series(generate, watchGenerators)
/**
* Builds everything.
*/
const build = gulp.series(generate, webWebpack)
/**
* Watches everything and rebuilds on file changes.
*/
const development = gulp.series(generate, gulp.parallel(watchGenerators, developmentServer))
module.exports = {
generate,
watchGenerate,
build,
dev: development,
schema,
graphQlOperations,
watchGraphQlOperations,
}