0
Fork 0
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:
Gao Sun 2022-04-20 23:23:41 +08:00 committed by GitHub
parent 3617f27f3a
commit 3db582aee3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

3
packages/cli/bin/run.js Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env node
require('../');

View file

@ -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",

View file

@ -9,5 +9,3 @@ const program = new Command();
program.addCommand(database);
program.parse(process.argv);
// Export * from './database';