File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ const stripBanner = require('rollup-plugin-strip-banner');
12
12
const chalk = require ( 'chalk' ) ;
13
13
const resolve = require ( '@rollup/plugin-node-resolve' ) . nodeResolve ;
14
14
const fs = require ( 'fs' ) ;
15
+ const childProcess = require ( 'child_process' ) ;
15
16
const argv = require ( 'minimist' ) ( process . argv . slice ( 2 ) ) ;
16
17
const Modules = require ( './modules' ) ;
17
18
const Bundles = require ( './bundles' ) ;
@@ -812,6 +813,11 @@ function handleRollupError(error) {
812
813
}
813
814
}
814
815
816
+ function runShellCommand ( command ) {
817
+ console . log ( chalk . dim ( 'Running: ' ) + chalk . cyan ( command ) ) ;
818
+ childProcess . execSync ( command , { stdio : 'inherit' , shell : true } ) ;
819
+ }
820
+
815
821
async function buildEverything ( ) {
816
822
if ( ! argv [ 'unsafe-partial' ] ) {
817
823
await asyncRimRaf ( 'build' ) ;
@@ -859,6 +865,9 @@ async function buildEverything() {
859
865
860
866
// eslint-disable-next-line no-for-of-loops/no-for-of-loops
861
867
for ( const [ bundle , bundleType ] of bundles ) {
868
+ if ( bundle . prebuild ) {
869
+ runShellCommand ( bundle . prebuild ) ;
870
+ }
862
871
await createBundle ( bundle , bundleType ) ;
863
872
}
864
873
You can’t perform that action at this time.
0 commit comments