Skip to content

Commit

Permalink
fix: update bin scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 10, 2023
1 parent e2fc2fd commit 6a8ac7d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 22 deletions.
17 changes: 0 additions & 17 deletions bin/dev

This file was deleted.

8 changes: 8 additions & 0 deletions bin/dev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env ts-node
// eslint-disable-next-line node/shebang
async function main() {
const {execute} = await import('@oclif/core')
await execute({development: true, dir: import.meta.url})
}

await main()
5 changes: 0 additions & 5 deletions bin/run

This file was deleted.

8 changes: 8 additions & 0 deletions bin/run.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env node

async function main() {
const {execute} = await import('@oclif/core')
await execute({dir: import.meta.url})
}

await main()

0 comments on commit 6a8ac7d

Please sign in to comment.