File tree Expand file tree Collapse file tree 6 files changed +16
-25
lines changed
Expand file tree Collapse file tree 6 files changed +16
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning
2+
3+ import { execute } from '@oclif/core'
4+
5+ await execute ( { development : true , dir : import . meta. url } )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ import { execute } from '@oclif/core'
4+
5+ await execute ( { dir : import . meta. url } )
Original file line number Diff line number Diff line change 44 "description" : " CLI wrapper for the sizeup library" ,
55 "author" : " Ọlálérè Williams" ,
66 "bin" : {
7- "sizeup" : " ./bin/run"
7+ "sizeup" : " ./bin/run.js "
88 },
99 "homepage" : " https://github.com/lerebear/sizeup-cli" ,
1010 "license" : " MIT" ,
7575 "keywords" : [
7676 " oclif"
7777 ],
78+ "type" : " module" ,
7879 "types" : " dist/index.d.ts"
7980}
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "declaration" : true ,
44 "importHelpers" : true ,
5- "module" : " commonjs" ,
5+ "module" : " node16" ,
6+ "moduleResolution" : " node16" ,
67 "outDir" : " dist" ,
78 "rootDir" : " src" ,
89 "strict" : true ,
9- "target" : " es2019"
10+ "target" : " es2019" ,
11+ "composite" : true
1012 },
1113 "ts-node" : {
1214 "esm" : true
You can’t perform that action at this time.
0 commit comments