Skip to content

Commit a8ab2bc

Browse files
potetomichaelfaith
andauthored
[rollup] Add support for running prebuild commands (#32592)
Extracting portions of #32416 for easier review. Adds a new `prebuild` option to allow for a prebuild command to be run prior to building the bundle. Co-authored-by: michael faith <[email protected]> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32592). * __->__ #32592 * #32591 * #32590 * #32589 * #32588 --------- Co-authored-by: michael faith <[email protected]>
1 parent 8646349 commit a8ab2bc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/rollup/build.js

+9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const stripBanner = require('rollup-plugin-strip-banner');
1212
const chalk = require('chalk');
1313
const resolve = require('@rollup/plugin-node-resolve').nodeResolve;
1414
const fs = require('fs');
15+
const childProcess = require('child_process');
1516
const argv = require('minimist')(process.argv.slice(2));
1617
const Modules = require('./modules');
1718
const Bundles = require('./bundles');
@@ -812,6 +813,11 @@ function handleRollupError(error) {
812813
}
813814
}
814815

816+
function runShellCommand(command) {
817+
console.log(chalk.dim('Running: ') + chalk.cyan(command));
818+
childProcess.execSync(command, {stdio: 'inherit', shell: true});
819+
}
820+
815821
async function buildEverything() {
816822
if (!argv['unsafe-partial']) {
817823
await asyncRimRaf('build');
@@ -859,6 +865,9 @@ async function buildEverything() {
859865

860866
// eslint-disable-next-line no-for-of-loops/no-for-of-loops
861867
for (const [bundle, bundleType] of bundles) {
868+
if (bundle.prebuild) {
869+
runShellCommand(bundle.prebuild);
870+
}
862871
await createBundle(bundle, bundleType);
863872
}
864873

0 commit comments

Comments
 (0)