UNPKG

fusion-cli

Version:
16 lines (14 loc) 318 B
// @noflow const {execSync} = require('child_process'); module.exports = () => { return { visitor: { StringLiteral(path /* : any */) { if (path.node.value === 'TRIGGER-BABEL-DELAY') { console.log('Triggered babel delay'); execSync('sleep 5'); } }, }, }; };