forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
26 lines (21 loc) · 816 Bytes
/
gulpfile.js
File metadata and controls
26 lines (21 loc) · 816 Bytes
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
// @ts-check
const gulp = require('gulp')
const { copyIntegrationAssets, watchIntegrationAssets } = require('./browser/gulpfile')
const { graphQLTypes, schema, watchGraphQLTypes, watchSchema } = require('./shared/gulpfile')
const { webpack: webWebpack, webpackDevServer: webWebpackDevServer } = require('./web/gulpfile')
/**
* Generates files needed for builds.
*/
const generate = gulp.parallel(schema, graphQLTypes)
/**
* Builds everything.
*/
const build = gulp.parallel(gulp.series(generate, gulp.parallel(webWebpack, copyIntegrationAssets)))
/**
* Watches everything and rebuilds on file changes.
*/
const watch = gulp.series(
generate,
gulp.parallel(watchSchema, watchGraphQLTypes, webWebpackDevServer, watchIntegrationAssets)
)
module.exports = { generate, build, watch, schema, graphQLTypes }