build: disable postinstall-patch.js log output (#27619)
currently we have no patches so the logging only adds noise to our dev environment. PR Close #27619
This commit is contained in:
parent
e5c10c3d91
commit
ffe1b4d819
|
@ -24,21 +24,24 @@ const {set, cd, sed, rm} = require('shelljs');
|
|||
const path = require('path');
|
||||
const log = console.log;
|
||||
|
||||
log('===== about to run the postinstall-patches.js script =====');
|
||||
// fail on first error
|
||||
set('-e');
|
||||
// print commands as being executed
|
||||
set('-v');
|
||||
// jump to project root
|
||||
cd(path.join(__dirname, '../'));
|
||||
// COMMENTED OUT BECAUSE WE CURRENTLY REQUIRE NO PATCHES
|
||||
// UNCOMMENT TO REENABLE PATCHING AND LOG OUTPUT
|
||||
//
|
||||
// log('===== about to run the postinstall-patches.js script =====');
|
||||
// // fail on first error
|
||||
// set('-e');
|
||||
// // print commands as being executed
|
||||
// set('-v');
|
||||
// // jump to project root
|
||||
// cd(path.join(__dirname, '../'));
|
||||
|
||||
/* EXAMPLE PATCH:
|
||||
// https://github.com/ReactiveX/rxjs/pull/3302
|
||||
// make node_modules/rxjs compilable with Typescript 2.7
|
||||
// remove when we update to rxjs v6
|
||||
log('\n# patch: reactivex/rxjs#3302 make node_modules/rxjs compilable with Typescript 2.7');
|
||||
sed('-i', '(\'response\' in xhr)', '(\'response\' in (xhr as any))',
|
||||
'node_modules/rxjs/src/observable/dom/AjaxObservable.ts');
|
||||
*/
|
||||
// /* EXAMPLE PATCH:
|
||||
// // https://github.com/ReactiveX/rxjs/pull/3302
|
||||
// // make node_modules/rxjs compilable with Typescript 2.7
|
||||
// // remove when we update to rxjs v6
|
||||
// log('\n# patch: reactivex/rxjs#3302 make node_modules/rxjs compilable with Typescript 2.7');
|
||||
// sed('-i', '(\'response\' in xhr)', '(\'response\' in (xhr as any))',
|
||||
// 'node_modules/rxjs/src/observable/dom/AjaxObservable.ts');
|
||||
// */
|
||||
|
||||
log('===== finished running the postinstall-patches.js script =====');
|
||||
// log('===== finished running the postinstall-patches.js script =====');
|
||||
|
|
Loading…
Reference in New Issue