mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
feat(cli): integrate node bin (#596)
This commit is contained in:
parent
3617f27f3a
commit
3db582aee3
3 changed files with 8 additions and 3 deletions
3
packages/cli/bin/run.js
Executable file
3
packages/cli/bin/run.js
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
require('../');
|
|
@ -6,8 +6,12 @@
|
|||
"author": "Logto",
|
||||
"license": "MPL-2.0",
|
||||
"files": [
|
||||
"lib"
|
||||
"lib",
|
||||
"bin"
|
||||
],
|
||||
"bin": {
|
||||
"logto": "bin/run.js"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"preinstall": "npx only-allow pnpm",
|
||||
|
|
|
@ -9,5 +9,3 @@ const program = new Command();
|
|||
|
||||
program.addCommand(database);
|
||||
program.parse(process.argv);
|
||||
|
||||
// Export * from './database';
|
||||
|
|
Loading…
Add table
Reference in a new issue