Skip to content

Commit 6a35ea8

Browse files
Allow the translation bot to recompile the htmls (#35531)
* Allow the translation bot to recompile the htmls * Update cleanup-media.es6.js * Update cleanup-media.es6.js * Update build/build-modules-js/init/cleanup-media.es6.js Co-authored-by: Brian Teeman <[email protected]> * Update cleanup-media.es6.js Co-authored-by: Brian Teeman <[email protected]>
1 parent 0d156a2 commit 6a35ea8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build/build-modules-js/init/cleanup-media.es6.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ const RootPath = process.cwd();
1212
* @returns {Promise}
1313
*/
1414
module.exports.cleanVendors = async () => {
15+
if (process.env.SKIP_COMPOSER_CHECK === 'YES') {
16+
// eslint-disable-next-line no-console
17+
console.log('Skipping the DebugBar assets...');
18+
return;
19+
}
20+
1521
// eslint-disable-next-line no-console
1622
console.log('Cleanup the Vendor ');
1723

0 commit comments

Comments
 (0)