@fragno-dev/cli 0.1.19 → 0.1.20

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @fragno-dev/cli@0.1.19 build /home/runner/work/fragno/fragno/apps/fragno-cli
2
+ > @fragno-dev/cli@0.1.20 build /home/runner/work/fragno/fragno/apps/fragno-cli
3
3
  > tsdown
4
4
 
5
5
  ℹ tsdown v0.15.12 powered by rolldown v1.0.0-beta.45
@@ -15,4 +15,4 @@
15
15
  ℹ dist/cli.d.ts.map  0.83 kB │ gzip: 0.39 kB
16
16
  ℹ dist/cli.d.ts  2.01 kB │ gzip: 0.49 kB
17
17
  ℹ 4 files, total: 110.06 kB
18
- ✔ Build complete in 8194ms
18
+ ✔ Build complete in 2335ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @fragno-dev/cli
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [aabd6d2]
8
+ - @fragno-dev/core@0.1.10
9
+ - @fragno-dev/corpus@0.0.6
10
+ - @fragno-dev/db@0.1.15
11
+
3
12
  ## 0.1.19
4
13
 
5
14
  ### Patch Changes
package/dist/cli.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
- import * as gunshi3 from "gunshi";
2
+ import * as gunshi4 from "gunshi";
3
3
  import "@fragno-dev/corpus";
4
4
 
5
5
  //#region src/commands/db/generate.d.ts
6
- declare const generateCommand: gunshi3.Command<{
6
+ declare const generateCommand: gunshi4.Command<{
7
7
  output: {
8
8
  type: "string";
9
9
  short: string;
@@ -27,13 +27,13 @@ declare const generateCommand: gunshi3.Command<{
27
27
  }>;
28
28
  //#endregion
29
29
  //#region src/commands/db/migrate.d.ts
30
- declare const migrateCommand: gunshi3.Command<{}>;
30
+ declare const migrateCommand: gunshi4.Command<{}>;
31
31
  //#endregion
32
32
  //#region src/commands/db/info.d.ts
33
- declare const infoCommand: gunshi3.Command<{}>;
33
+ declare const infoCommand: gunshi4.Command<{}>;
34
34
  //#endregion
35
35
  //#region src/commands/search.d.ts
36
- declare const searchCommand: gunshi3.Command<{
36
+ declare const searchCommand: gunshi4.Command<{
37
37
  limit: {
38
38
  type: "number";
39
39
  description: string;
@@ -57,7 +57,7 @@ declare const searchCommand: gunshi3.Command<{
57
57
  }>;
58
58
  //#endregion
59
59
  //#region src/commands/corpus.d.ts
60
- declare const corpusCommand: gunshi3.Command<{
60
+ declare const corpusCommand: gunshi4.Command<{
61
61
  "no-line-numbers": {
62
62
  type: "boolean";
63
63
  short: string;
@@ -88,8 +88,8 @@ declare const corpusCommand: gunshi3.Command<{
88
88
  }>;
89
89
  //#endregion
90
90
  //#region src/cli.d.ts
91
- declare const dbCommand: gunshi3.Command<gunshi3.Args>;
92
- declare const mainCommand: gunshi3.Command<gunshi3.Args>;
91
+ declare const dbCommand: gunshi4.Command<gunshi4.Args>;
92
+ declare const mainCommand: gunshi4.Command<gunshi4.Args>;
93
93
  declare function run(): Promise<void>;
94
94
  //#endregion
95
95
  export { corpusCommand, dbCommand, generateCommand, infoCommand, mainCommand, migrateCommand, run, searchCommand };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fragno-dev/cli",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "exports": {
5
5
  ".": {
6
6
  "development": "./src/cli.ts",
@@ -27,7 +27,7 @@
27
27
  "gunshi": "^0.26.3",
28
28
  "marked": "^15.0.12",
29
29
  "marked-terminal": "^7.3.0",
30
- "@fragno-dev/core": "0.1.9",
30
+ "@fragno-dev/core": "0.1.10",
31
31
  "@fragno-dev/corpus": "0.0.6",
32
32
  "@fragno-dev/db": "0.1.15"
33
33
  },