Skip to content

Commit cb8bd90

Browse files
committed
runner: add shebang
1 parent 412bd38 commit cb8bd90

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env node
2+
13
import * as yargs from 'yargs';
24
import InitProject from './commands/init';
35
import RunProject from './commands/run';
@@ -40,6 +42,7 @@ yargs
4042
.help('help')
4143
.wrap(null).argv;
4244
const runProject = new RunProject(initArgv);
45+
4346
runProject.start();
4447
})
4548
.alias('h', 'help')

0 commit comments

Comments
 (0)