forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
49 lines (42 loc) · 1.06 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
// @ts-check
const gulp = require('gulp')
const {
graphQlSchema,
graphQlOperations,
schema,
watchGraphQlSchema,
watchGraphQlOperations,
watchSchema,
} = require('./client/shared/gulpfile')
const { webpack: webWebpack, webpackDevServer: webWebpackDevServer } = require('./client/web/gulpfile')
/**
* Generates files needed for builds.
*/
const generate = gulp.parallel(schema, graphQlSchema, graphQlOperations)
/**
* Starts all watchers on schema files.
*/
const watchGenerators = gulp.parallel(watchSchema, watchGraphQlSchema, watchGraphQlOperations)
/**
* 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 dev = gulp.series(generate, gulp.parallel(watchGenerators, webWebpackDevServer))
module.exports = {
generate,
watchGenerate,
build,
dev,
schema,
graphQlSchema,
watchGraphQlSchema,
graphQlOperations,
watchGraphQlOperations,
}