delimit-cli 3.14.29 → 3.14.30
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/bin/delimit-setup.js +3 -6
- package/package.json +1 -1
package/bin/delimit-setup.js
CHANGED
|
@@ -81,12 +81,9 @@ async function main() {
|
|
|
81
81
|
if (latest && latest !== _pkg.version && latest > _pkg.version) {
|
|
82
82
|
log(dim(` Updating delimit-cli ${_pkg.version} -> ${latest}...`));
|
|
83
83
|
execSync('npm install -g delimit-cli@latest 2>/dev/null', { stdio: 'pipe', timeout: 30000 });
|
|
84
|
-
// Re-exec with the updated version
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
execSync(`node "${setupPath}"`, { stdio: 'inherit' });
|
|
88
|
-
process.exit(0);
|
|
89
|
-
}
|
|
84
|
+
// Re-exec with the updated version from the NEW install location
|
|
85
|
+
execSync('delimit-cli setup', { stdio: 'inherit' });
|
|
86
|
+
process.exit(0);
|
|
90
87
|
}
|
|
91
88
|
} catch { /* offline or timeout — continue with current version */ }
|
|
92
89
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "delimit-cli",
|
|
3
3
|
"mcpName": "io.github.delimit-ai/delimit-mcp-server",
|
|
4
|
-
"version": "3.14.
|
|
4
|
+
"version": "3.14.30",
|
|
5
5
|
"description": "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"files": [
|