(command)
| 37 | } |
| 38 | |
| 39 | function runCommand(command) { |
| 40 | if (command === 'bootstrap') { |
| 41 | compileBuildScripts().then(console.log); |
| 42 | return; |
| 43 | } |
| 44 | |
| 45 | runScript(command); |
| 46 | } |
| 47 | |
| 48 | const command = process.argv[2]; |
| 49 | const always_compile_scripts = ['ci', 'package_prepublish']; |
no test coverage detected