@karmaniverous/jeeves 0.6.0-5 → 0.6.0-6
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/cli/jeeves/index.js +3 -3
- package/dist/cli/service/index.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/dist/cli/jeeves/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { Command } from 'commander';
|
|
2
|
+
import { Command } from '@commander-js/extra-typings';
|
|
3
3
|
import { major } from 'semver';
|
|
4
4
|
import { JSONPath } from 'jsonpath-plus';
|
|
5
5
|
import { join, resolve, dirname, basename } from 'node:path';
|
|
@@ -140,14 +140,14 @@ const DEFAULT_PORTS = {
|
|
|
140
140
|
* Core library version, inlined at build time.
|
|
141
141
|
*
|
|
142
142
|
* @remarks
|
|
143
|
-
* The `0.6.0-
|
|
143
|
+
* The `0.6.0-5` placeholder is replaced by
|
|
144
144
|
* `@rollup/plugin-replace` during the build with the actual version
|
|
145
145
|
* from `package.json`. This ensures the correct version survives
|
|
146
146
|
* when consumers bundle core into their own dist (where runtime
|
|
147
147
|
* `import.meta.url`-based resolution would find the wrong package.json).
|
|
148
148
|
*/
|
|
149
149
|
/** The core library version from package.json (inlined at build time). */
|
|
150
|
-
const CORE_VERSION = '0.6.0-
|
|
150
|
+
const CORE_VERSION = '0.6.0-5';
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
153
|
* Shared internal utility functions.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { existsSync, unlinkSync, mkdirSync, writeFileSync, readFileSync } from 'node:fs';
|
|
3
3
|
import { join } from 'node:path';
|
|
4
|
-
import { Command } from 'commander';
|
|
4
|
+
import { Command } from '@commander-js/extra-typings';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
import { execSync } from 'node:child_process';
|
|
7
7
|
import { homedir } from 'node:os';
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import crypto, { randomUUID } from 'node:crypto';
|
|
|
4
4
|
import { JSONPath } from 'jsonpath-plus';
|
|
5
5
|
import { major } from 'semver';
|
|
6
6
|
import { z } from 'zod';
|
|
7
|
-
import { Command } from 'commander';
|
|
7
|
+
import { Command } from '@commander-js/extra-typings';
|
|
8
8
|
import cp, { execSync } from 'node:child_process';
|
|
9
9
|
import { homedir } from 'node:os';
|
|
10
10
|
import { fileURLToPath } from 'node:url';
|
|
@@ -142,14 +142,14 @@ const DEFAULT_PORTS = {
|
|
|
142
142
|
* Core library version, inlined at build time.
|
|
143
143
|
*
|
|
144
144
|
* @remarks
|
|
145
|
-
* The `0.6.0-
|
|
145
|
+
* The `0.6.0-5` placeholder is replaced by
|
|
146
146
|
* `@rollup/plugin-replace` during the build with the actual version
|
|
147
147
|
* from `package.json`. This ensures the correct version survives
|
|
148
148
|
* when consumers bundle core into their own dist (where runtime
|
|
149
149
|
* `import.meta.url`-based resolution would find the wrong package.json).
|
|
150
150
|
*/
|
|
151
151
|
/** The core library version from package.json (inlined at build time). */
|
|
152
|
-
const CORE_VERSION = '0.6.0-
|
|
152
|
+
const CORE_VERSION = '0.6.0-5';
|
|
153
153
|
|
|
154
154
|
/**
|
|
155
155
|
* Workspace and config root initialization.
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"url": "https://github.com/karmaniverous/jeeves/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@commander-js/extra-typings": "^15.0.0",
|
|
10
11
|
"commander": "^15.0.0",
|
|
11
12
|
"cross-spawn": "^7.0.6",
|
|
12
13
|
"jsonpath-plus": "^11.0.0",
|
|
@@ -16,7 +17,6 @@
|
|
|
16
17
|
},
|
|
17
18
|
"description": "Shared library and CLI for the Jeeves AI assistant platform.",
|
|
18
19
|
"devDependencies": {
|
|
19
|
-
"@commander-js/extra-typings": "^15.0.0",
|
|
20
20
|
"@dotenvx/dotenvx": "^2.30.0",
|
|
21
21
|
"@eslint/js": "^10.0.1",
|
|
22
22
|
"@rollup/plugin-alias": "^6.0.0",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
},
|
|
134
134
|
"type": "module",
|
|
135
135
|
"types": "dist/index.d.ts",
|
|
136
|
-
"version": "0.6.0-
|
|
136
|
+
"version": "0.6.0-6",
|
|
137
137
|
"allowScripts": {
|
|
138
138
|
"lefthook": true
|
|
139
139
|
}
|