@helloao/cli 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.d.ts +1 -0
- package/cli.js +3 -2
- package/package.json +2 -2
package/cli.d.ts
CHANGED
package/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
"use strict";
|
|
2
3
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19,8 +20,8 @@ async function start() {
|
|
|
19
20
|
globalThis.Element = linkedom_1.Element;
|
|
20
21
|
globalThis.Node = linkedom_1.Node;
|
|
21
22
|
const program = new commander_1.Command();
|
|
22
|
-
program.name('
|
|
23
|
-
.description('A CLI for managing a Bible API.')
|
|
23
|
+
program.name('helloao')
|
|
24
|
+
.description('A CLI for managing a Free Use Bible API.')
|
|
24
25
|
.version('0.0.1');
|
|
25
26
|
program.command('init [path]')
|
|
26
27
|
.description('Initialize a new Bible API DB.')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helloao/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "A CLI and related tools for managing HelloAO's Free Bible API",
|
|
5
5
|
"module": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Kallyn Gowdy <kal@helloao.org>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@helloao/tools": "^
|
|
13
|
+
"@helloao/tools": "^0.0.4",
|
|
14
14
|
"commander": "12.1.0",
|
|
15
15
|
"@gracious.tech/fetch-client": "^0.7.0",
|
|
16
16
|
"prisma": "^5.12.1",
|