diff --git a/bin/run.js b/bin/run.js new file mode 100644 index 0000000..ff35351 --- /dev/null +++ b/bin/run.js @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +require('@oclif/command').run().then(require('@oclif/command/flush')).catch(require('@oclif/errors/handle')); diff --git a/bin/run.ps1 b/bin/run.ps1 new file mode 100644 index 0000000..d384813 --- /dev/null +++ b/bin/run.ps1 @@ -0,0 +1,5 @@ +#!/usr/bin/env pwsh + +$basedir = Split-Path $MyInvocation.MyCommand.Definition -Parent + +& node "$basedir/run.js" $args