@maroonedsoftware/johnny5 1.1.0 → 1.1.1
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/dist/index.d.ts +2 -2
- package/dist/integrations/docker/index.d.ts +1 -1
- package/dist/integrations/filesystem/index.d.ts +1 -1
- package/dist/integrations/kysely/index.d.ts +1 -1
- package/dist/integrations/permissions/index.d.ts +1 -1
- package/dist/integrations/postgres/index.d.ts +1 -1
- package/dist/integrations/redis/index.d.ts +1 -1
- package/dist/integrations/serverkit/index.d.ts +1 -1
- package/dist/integrations/versions/index.d.ts +1 -1
- package/dist/{types-DH7gcIP5.d.ts → types-D4sOs9OQ.d.ts} +1 -1
- package/package.json +16 -16
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AppConfig } from '@maroonedsoftware/appconfig';
|
|
2
|
-
import {
|
|
3
|
-
export { A as ArgSpec,
|
|
2
|
+
import { b as CliContext, l as DiscoveredCommand, f as CommandRegistration, C as Check, c as CliLogger, e as CommandModule } from './types-D4sOs9OQ.js';
|
|
3
|
+
export { A as ArgSpec, a as CheckResult, d as CliPaths, g as CreateLoggerOptions, D as DaemonStartOptions, h as DaemonStatus, i as Daemons, j as DangerousSpec, k as DetachedHandle, E as EnvironmentGuardSpec, J as JohnnyPaths, O as OptionSpec, m as OptionType, P as PluginManifest, R as RunDetachedOptions, S as Shell, n as ShellOptions, o as createDaemons, p as createDefaultLogger, q as createShell, r as johnnyPaths, s as projectSlug } from './types-D4sOs9OQ.js';
|
|
4
4
|
import { Command } from 'commander';
|
|
5
5
|
import * as clack from '@clack/prompts';
|
|
6
6
|
import 'execa';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AuthorizationModel } from '@maroonedsoftware/permissions';
|
|
2
|
-
import {
|
|
2
|
+
import { b as CliContext, C as Check } from '../../types-D4sOs9OQ.js';
|
|
3
3
|
import '@maroonedsoftware/appconfig';
|
|
4
4
|
import 'execa';
|
|
5
5
|
|
|
@@ -2,7 +2,7 @@ import { Container, ScopedContainer } from 'injectkit';
|
|
|
2
2
|
import { AppConfig } from '@maroonedsoftware/appconfig';
|
|
3
3
|
import { Logger } from '@maroonedsoftware/logger';
|
|
4
4
|
import { ServerKitModule } from '@maroonedsoftware/koa';
|
|
5
|
-
import {
|
|
5
|
+
import { b as CliContext, e as CommandModule } from '../../types-D4sOs9OQ.js';
|
|
6
6
|
import 'execa';
|
|
7
7
|
|
|
8
8
|
/** Options accepted by `bootstrapForCli`. */
|
|
@@ -249,4 +249,4 @@ interface CliContext {
|
|
|
249
249
|
env: NodeJS.ProcessEnv;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
-
export { type ArgSpec as A, type
|
|
252
|
+
export { type ArgSpec as A, type Check as C, type DaemonStartOptions as D, type EnvironmentGuardSpec as E, type JohnnyPaths as J, type OptionSpec as O, type PluginManifest as P, type RunDetachedOptions as R, type Shell as S, type CheckResult as a, type CliContext as b, type CliLogger as c, type CliPaths as d, type CommandModule as e, type CommandRegistration as f, type CreateLoggerOptions as g, type DaemonStatus as h, type Daemons as i, type DangerousSpec as j, type DetachedHandle as k, type DiscoveredCommand as l, type OptionType as m, type ShellOptions as n, createDaemons as o, createDefaultLogger as p, createShell as q, johnnyPaths as r, projectSlug as s };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maroonedsoftware/johnny5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "CLI framework for ServerKit-based applications — plugin registration, doctor runner, and opt-in Postgres/Redis/Docker integrations",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Marooned Software",
|
|
@@ -71,20 +71,20 @@
|
|
|
71
71
|
"dist/**"
|
|
72
72
|
],
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@clack/prompts": "^
|
|
74
|
+
"@clack/prompts": "^1.4.0",
|
|
75
75
|
"commander": "^14.0.3",
|
|
76
|
-
"execa": "^9.6.
|
|
77
|
-
"injectkit": "^1.
|
|
78
|
-
"@maroonedsoftware/logger": "1.1.
|
|
79
|
-
"@maroonedsoftware/appconfig": "1.5.
|
|
76
|
+
"execa": "^9.6.1",
|
|
77
|
+
"injectkit": "^1.4.1",
|
|
78
|
+
"@maroonedsoftware/logger": "1.1.1",
|
|
79
|
+
"@maroonedsoftware/appconfig": "1.5.1"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
82
|
"ioredis": "^5.10.0",
|
|
83
83
|
"kysely": "^0.28.0",
|
|
84
84
|
"pg": "^8.20.0",
|
|
85
|
-
"@maroonedsoftware/koa": "2.2.
|
|
86
|
-
"@maroonedsoftware/permissions": "0.2.
|
|
87
|
-
"@maroonedsoftware/permissions-dsl": "0.4.
|
|
85
|
+
"@maroonedsoftware/koa": "2.2.5",
|
|
86
|
+
"@maroonedsoftware/permissions": "0.2.1",
|
|
87
|
+
"@maroonedsoftware/permissions-dsl": "0.4.1"
|
|
88
88
|
},
|
|
89
89
|
"peerDependenciesMeta": {
|
|
90
90
|
"@maroonedsoftware/koa": {
|
|
@@ -109,15 +109,15 @@
|
|
|
109
109
|
"devDependencies": {
|
|
110
110
|
"@types/pg": "^8.20.0",
|
|
111
111
|
"ioredis": "^5.10.1",
|
|
112
|
-
"kysely": "^0.
|
|
113
|
-
"pg": "^8.
|
|
112
|
+
"kysely": "^0.29.2",
|
|
113
|
+
"pg": "^8.21.0",
|
|
114
114
|
"tsup": "^8.5.1",
|
|
115
|
-
"vitest": "^4.1.
|
|
116
|
-
"@maroonedsoftware/
|
|
117
|
-
"@maroonedsoftware/
|
|
115
|
+
"vitest": "^4.1.7",
|
|
116
|
+
"@maroonedsoftware/koa": "2.2.5",
|
|
117
|
+
"@maroonedsoftware/permissions": "0.2.1",
|
|
118
|
+
"@maroonedsoftware/permissions-dsl": "0.4.1",
|
|
118
119
|
"@repo/config-eslint": "0.2.1",
|
|
119
|
-
"@repo/config-typescript": "0.1.0"
|
|
120
|
-
"@maroonedsoftware/permissions": "0.2.0"
|
|
120
|
+
"@repo/config-typescript": "0.1.0"
|
|
121
121
|
},
|
|
122
122
|
"scripts": {
|
|
123
123
|
"build": "tsup",
|