@spexcode/spec-cli 0.7.0-next.0 → 0.7.0-next.2
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/sessions.js +1 -1
- package/package.json +7 -7
package/dist/sessions.js
CHANGED
|
@@ -2988,7 +2988,7 @@ async function prepareSession(prompt, parent, launcher, name, context) {
|
|
|
2988
2988
|
try {
|
|
2989
2989
|
gitMutationStarted = true;
|
|
2990
2990
|
traceSessionCreate(id, requestDigest, phase, 'start', 'worktree-add');
|
|
2991
|
-
const added = await withGitAbortSignal(signal, () => gitTry(['-C', root, 'worktree', 'add', '-b', branch, path, startPoint], { extraEnv: DEFER_FOOTPRINT_REFRESH }));
|
|
2991
|
+
const added = await withGitAbortSignal(signal, () => gitTry(['-C', root, 'worktree', 'add', '--no-track', '-b', branch, path, startPoint], { extraEnv: DEFER_FOOTPRINT_REFRESH }));
|
|
2992
2992
|
traceSessionCreate(id, requestDigest, phase, 'finish', 'worktree-add');
|
|
2993
2993
|
if (added.ok)
|
|
2994
2994
|
Object.assign(owned, { path: true, worktree: true, branch: true });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spexcode/spec-cli",
|
|
3
|
-
"version": "0.7.0-next.
|
|
3
|
+
"version": "0.7.0-next.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "SpexCode CLI + server. The root spexcode package delegates to this compiled package; dashboard assets live in @spexcode/spec-dashboard.",
|
|
6
6
|
"bin": {
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"test": "tsx --import ../scripts/test-home.mjs --test src/*.test.ts"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@spexcode/session-application": "0.7.0-next.
|
|
39
|
-
"@spexcode/session-selflaunch": "0.7.0-next.
|
|
40
|
-
"@spexcode/spec-core": "0.7.0-next.
|
|
41
|
-
"@spexcode/spec-eval": "0.7.0-next.
|
|
42
|
-
"@spexcode/spec-forge": "0.7.0-next.
|
|
43
|
-
"@spexcode/transcript": "0.7.0-next.
|
|
38
|
+
"@spexcode/session-application": "0.7.0-next.2",
|
|
39
|
+
"@spexcode/session-selflaunch": "0.7.0-next.2",
|
|
40
|
+
"@spexcode/spec-core": "0.7.0-next.2",
|
|
41
|
+
"@spexcode/spec-eval": "0.7.0-next.2",
|
|
42
|
+
"@spexcode/spec-forge": "0.7.0-next.2",
|
|
43
|
+
"@spexcode/transcript": "0.7.0-next.2",
|
|
44
44
|
"smol-toml": "^1.8.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|