forked from facebook/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
435 lines (414 loc) · 11.1 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @oncall relay
*/
'use strict';
const babelOptions = require('./scripts/getBabelOptions')({
ast: false,
plugins: [
'babel-plugin-syntax-hermes-parser',
'@babel/plugin-transform-flow-strip-types',
[
'@babel/plugin-transform-runtime',
{version: require('@babel/runtime/package.json').version},
],
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-proposal-optional-catch-binding',
'@babel/plugin-proposal-optional-chaining',
],
postPlugins: [
'@babel/plugin-transform-async-to-generator',
'@babel/plugin-transform-modules-commonjs',
],
sourceType: 'script',
});
const del = require('del');
const fs = require('fs');
const gulp = require('gulp');
const babel = require('gulp-babel');
const header = require('gulp-header');
const rename = require('gulp-rename');
const gulpUtil = require('gulp-util');
const path = require('path');
const webpack = require('webpack');
const webpackStream = require('webpack-stream');
const RELEASE_COMMIT_SHA = process.env.RELEASE_COMMIT_SHA;
if (RELEASE_COMMIT_SHA && RELEASE_COMMIT_SHA.length !== 40) {
throw new Error(
'If the RELEASE_COMMIT_SHA env variable is set, it should be set to the ' +
'40 character git commit hash.',
);
}
const VERSION = RELEASE_COMMIT_SHA
? `0.0.0-main-${RELEASE_COMMIT_SHA.substr(0, 8)}`
: process.env.npm_package_version;
const DEVELOPMENT_HEADER = `/**
* Relay v${VERSION}
*/
`;
const PRODUCTION_HEADER = `/**
* Relay v${VERSION}
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
`;
const buildDist = function (filename, opts, isProduction) {
const webpackOpts = {
externals: [/^[-/a-zA-Z0-9]+$/, /^@babel\/.+$/],
target: opts.target,
output: {
filename: filename,
libraryTarget: opts.libraryTarget,
library: opts.libraryName,
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(
isProduction ? 'production' : 'development',
),
}),
],
};
if (isProduction && !opts.noMinify) {
// See more chunks configuration here: https://gist.github.com/sokra/1522d586b8e5c0f5072d7565c2bee693
webpackOpts.optimization = {
minimize: true,
};
}
return webpackStream(webpackOpts, webpack, function (err, stats) {
if (err) {
throw new gulpUtil.PluginError('webpack', err);
}
if (stats.compilation.errors.length) {
throw new gulpUtil.PluginError('webpack', stats.toString());
}
});
};
// Paths from package-root
const PACKAGES = 'packages';
const DIST = 'dist';
// Globs for paths in PACKAGES
const INCLUDE_GLOBS = [
'**/*.js',
'!**/__tests__/**',
'!**/__flowtests__/**',
'!**/__mocks__/**',
'!**/node_modules/**',
];
const builds = [
{
package: 'babel-plugin-relay',
exports: {
index: 'BabelPluginRelay.js',
macro: 'BabelPluginRelay.macro.js',
},
bundles: [
{
entry: 'BabelPluginRelay.js',
output: 'babel-plugin-relay',
libraryName: 'BabelPluginRelay',
libraryTarget: 'commonjs2',
target: 'node',
},
],
},
{
package: 'react-relay',
exports: {
index: 'index.js',
hooks: 'hooks.js',
legacy: 'legacy.js',
ReactRelayContext: 'ReactRelayContext.js',
},
bundles: [
{
entry: 'index.js',
output: 'react-relay',
libraryName: 'ReactRelay',
libraryTarget: 'umd',
},
{
entry: 'hooks.js',
output: 'react-relay-hooks',
libraryName: 'ReactRelayHooks',
libraryTarget: 'umd',
},
{
entry: 'legacy.js',
output: 'react-relay-legacy',
libraryName: 'ReactRelayLegacy',
libraryTarget: 'umd',
},
],
},
{
package: 'relay-runtime',
exports: {
index: 'index.js',
experimental: 'experimental.js',
},
bundles: [
{
entry: 'index.js',
output: 'relay-runtime',
libraryName: 'RelayRuntime',
libraryTarget: 'umd',
},
{
entry: 'experimental.js',
output: 'relay-runtime-experimental',
libraryName: 'ReactRelayExperimental',
libraryTarget: 'umd',
},
],
},
{
package: 'relay-test-utils',
exports: {
index: 'index.js',
},
bundles: [
{
entry: 'index.js',
output: 'relay-test-utils',
libraryName: 'RelayTestUtils',
libraryTarget: 'commonjs2',
target: 'node',
noMinify: true, // Note: uglify can't yet handle modern JS
},
],
},
{
package: 'relay-test-utils-internal',
exports: {
index: 'index.js',
},
bundles: [
{
entry: 'index.js',
output: 'relay-test-utils-internal',
libraryName: 'RelayTestUtilsInternal',
libraryTarget: 'commonjs2',
target: 'node',
noMinify: true, // Note: uglify can't yet handle modern JS
},
],
},
];
const modules = gulp.parallel(
...builds.map(
build =>
function modulesTask() {
return gulp
.src(INCLUDE_GLOBS, {
cwd: path.join(PACKAGES, build.package),
})
.pipe(babel(babelOptions))
.pipe(gulp.dest(path.join(DIST, build.package, 'lib')));
},
),
);
const flowDefs = gulp.parallel(
...builds.map(
build =>
function modulesTask() {
return gulp
.src(['**/*.js', '!**/__tests__/**/*.js', '!**/__mocks__/**/*.js'], {
cwd: PACKAGES + '/' + build.package,
})
.pipe(rename({extname: '.js.flow'}))
.pipe(gulp.dest(path.join(DIST, build.package)));
},
),
);
const copyFilesTasks = [];
builds.forEach(build => {
copyFilesTasks.push(
function copyLicense() {
return gulp
.src(['LICENSE'])
.pipe(gulp.dest(path.join(DIST, build.package)));
},
function copyReadmeFile() {
return gulp
.src(['README.md'], {
cwd: path.join(PACKAGES, build.package),
})
.pipe(gulp.dest(path.join(DIST, build.package)));
},
function copyTestschema() {
return gulp
.src(['*.graphql'], {
cwd: path.join(PACKAGES, build.package),
})
.pipe(gulp.dest(path.join(DIST, build.package, 'lib')));
},
function copyPackageJSON() {
return gulp
.src(['package.json'], {
cwd: path.join(PACKAGES, build.package),
})
.pipe(gulp.dest(path.join(DIST, build.package)));
},
);
});
const copyFiles = gulp.parallel(copyFilesTasks);
const exportsFiles = gulp.series(
copyFiles,
flowDefs,
modules,
gulp.parallel(
...builds.map(
build =>
function exportsFilesTask(done) {
Object.keys(build.exports).map(exportName =>
fs.writeFileSync(
path.join(DIST, build.package, exportName + '.js'),
PRODUCTION_HEADER +
`\nmodule.exports = require('./lib/${build.exports[exportName]}');\n`,
),
);
done();
},
),
),
);
const bundlesTasks = [];
builds.forEach(build => {
build.bundles.forEach(bundle => {
bundlesTasks.push(function bundleTask() {
return gulp
.src(path.join(DIST, build.package, 'lib', bundle.entry))
.pipe(
buildDist(bundle.output + '.js', bundle, /* isProduction */ false),
)
.pipe(header(DEVELOPMENT_HEADER))
.pipe(gulp.dest(path.join(DIST, build.package)));
});
});
});
const bundles = gulp.series(bundlesTasks);
const bundlesMinTasks = [];
builds.forEach(build => {
build.bundles.forEach(bundle => {
bundlesMinTasks.push(function bundlesMinTask() {
return gulp
.src(path.join(DIST, build.package, 'lib', bundle.entry))
.pipe(
buildDist(bundle.output + '.min.js', bundle, /* isProduction */ true),
)
.pipe(header(PRODUCTION_HEADER))
.pipe(gulp.dest(path.join(DIST, build.package)));
});
});
});
const bundlesMin = gulp.series(bundlesMinTasks);
const clean = () => del(DIST);
const dist = gulp.series(exportsFiles, bundles, bundlesMin);
const watch = gulp.series(dist, () =>
gulp.watch(INCLUDE_GLOBS, {cwd: PACKAGES}, dist),
);
const relayCompiler = gulp.parallel(
function copyLicense() {
return gulp
.src(['LICENSE'])
.pipe(gulp.dest(path.join(DIST, 'relay-compiler')));
},
function copyGraphQLExtensions() {
return gulp
.src(
path.join(
'.',
'compiler',
'crates',
'relay-schema',
'src',
'relay-extensions.graphql',
),
)
.pipe(gulp.dest(path.join(DIST, 'relay-compiler')));
},
function copyPackageFiles() {
return gulp
.src(['README.md', 'package.json', 'cli.js', 'index.js'], {
cwd: path.join(PACKAGES, 'relay-compiler'),
})
.pipe(gulp.dest(path.join(DIST, 'relay-compiler')));
},
function copyCompilerBins() {
return gulp
.src('**', {
cwd: path.join('artifacts'),
})
.pipe(gulp.dest(path.join(DIST, 'relay-compiler')));
},
);
/**
* Updates the package.json files `/dist/` with a version to release to npm under
* the main tag.
*/
const setMainVersion = async () => {
if (!RELEASE_COMMIT_SHA) {
throw new Error('Expected the RELEASE_COMMIT_SHA env variable to be set.');
}
const packages = builds.map(build => build.package);
packages.push('relay-compiler');
packages.forEach(pkg => {
const pkgJsonPath = path.join('.', 'dist', pkg, 'package.json');
const packageJson = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf8'));
packageJson.version = VERSION;
for (const depKind of [
'dependencies',
'devDependencies',
'peerDependencies',
]) {
const deps = packageJson[depKind];
for (const dep in deps) {
if (packages.includes(dep)) {
deps[dep] = VERSION;
}
}
}
fs.writeFileSync(
pkgJsonPath,
JSON.stringify(packageJson, null, 2) + '\n',
'utf8',
);
});
};
async function setCompilerMainVersion() {
if (!RELEASE_COMMIT_SHA) {
throw new Error('Expected the RELEASE_COMMIT_SHA env variable to be set.');
}
const currentVersion = require('./package.json').version;
const compilerCargoFile = path.join(
'.',
'compiler',
'crates',
'relay-compiler',
'Cargo.toml',
);
const cargo = fs.readFileSync(compilerCargoFile, 'utf8');
const updatedCargo = cargo.replace(
`version = "${currentVersion}"`,
`version = "${VERSION}"`,
);
fs.writeFileSync(compilerCargoFile, updatedCargo, 'utf8');
}
const cleanbuild = gulp.series(clean, dist);
exports.clean = clean;
exports.dist = dist;
exports.watch = watch;
exports.mainrelease = gulp.series(cleanbuild, relayCompiler, setMainVersion);
exports.release = gulp.series(cleanbuild, relayCompiler);
exports.cleanbuild = cleanbuild;
exports.default = cleanbuild;
exports.setCompilerMainVersion = setCompilerMainVersion;