diff --git a/bin/dev.js b/bin/dev.js index c87b65b4a..7122c2827 100755 --- a/bin/dev.js +++ b/bin/dev.js @@ -1,4 +1,4 @@ -#!/usr/bin/env npx tsx +#!/usr/bin/env -S npx tsx async function main() { const { execute } = await import('@oclif/core'); diff --git a/bin/run.js b/bin/run.js index 0c3827a11..4a32f3b6b 100755 --- a/bin/run.js +++ b/bin/run.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node --no-warnings=ExperimentalWarning +#!/usr/bin/env -S node --no-warnings=ExperimentalWarning // ^ we need this env variable above to hide the ExperimentalWarnings // source: https://github.com/nodejs/node/issues/10802#issuecomment-573376999