@parall/daemon 1.29.1 → 1.29.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/bundle/manifest.json +4 -4
- package/bundle/parall-daemon.js +3 -0
- package/dist/workspace.d.ts.map +1 -1
- package/dist/workspace.js +3 -0
- package/package.json +6 -6
package/bundle/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.29.
|
|
3
|
-
"built_at": "2026-05-20T16:05
|
|
2
|
+
"version": "1.29.2",
|
|
3
|
+
"built_at": "2026-05-20T16:16:05.742Z",
|
|
4
4
|
"files": {
|
|
5
5
|
"parall-claude-agent.js": {
|
|
6
6
|
"sha256": "b5bf9dc2700a3c45ab28f0cadb4c5d945722fb2b13184ef5af7cfd591cb633ab",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"size": 264534
|
|
12
12
|
},
|
|
13
13
|
"parall-daemon.js": {
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "300f4beea5bdbebdee449f864459dea775fd3ea8318a0a44e084a11a077f72a5",
|
|
15
|
+
"size": 135281
|
|
16
16
|
},
|
|
17
17
|
"parall-openclaw-agent.js": {
|
|
18
18
|
"sha256": "d2128b5a15c37c9fe624ed6ba6f1dc15c32235d98795e6171716d9776014aedf",
|
package/bundle/parall-daemon.js
CHANGED
|
@@ -2146,6 +2146,9 @@ var DEFAULT_SETUP_TIMEOUT_SEC = 600;
|
|
|
2146
2146
|
async function prepareWorkspace(opts) {
|
|
2147
2147
|
const prior = opts.attached.workspace_state;
|
|
2148
2148
|
const plan = buildWorkspacePlan(opts.attached.daemon_config, opts.defaultWorkspaceDir, prior?.config_hash);
|
|
2149
|
+
if (!opts.attached.daemon_config && !prior) {
|
|
2150
|
+
return plan.workspaceDir;
|
|
2151
|
+
}
|
|
2149
2152
|
let forceSetup = false;
|
|
2150
2153
|
if (prior?.status === "ready" && prior.config_hash === plan.configHash) {
|
|
2151
2154
|
if (await verifyExistingWorkspace(plan, opts.log)) {
|
package/dist/workspace.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../src/workspace.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,aAAa,EAA4C,YAAY,EAAE,MAAM,aAAa,CAAC;AAiBzG,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,aAAa,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,GAAG,EAAE,aAAa,CAAC;CACpB;AAED,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../src/workspace.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,aAAa,EAA4C,YAAY,EAAE,MAAM,aAAa,CAAC;AAiBzG,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,aAAa,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,GAAG,EAAE,aAAa,CAAC;CACpB;AAED,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,CA6ClF"}
|
package/dist/workspace.js
CHANGED
|
@@ -8,6 +8,9 @@ const DEFAULT_SETUP_TIMEOUT_SEC = 600;
|
|
|
8
8
|
export async function prepareWorkspace(opts) {
|
|
9
9
|
const prior = opts.attached.workspace_state;
|
|
10
10
|
const plan = buildWorkspacePlan(opts.attached.daemon_config, opts.defaultWorkspaceDir, prior?.config_hash);
|
|
11
|
+
if (!opts.attached.daemon_config && !prior) {
|
|
12
|
+
return plan.workspaceDir;
|
|
13
|
+
}
|
|
11
14
|
let forceSetup = false;
|
|
12
15
|
if (prior?.status === "ready" && prior.config_hash === plan.configHash) {
|
|
13
16
|
if (await verifyExistingWorkspace(plan, opts.log)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/daemon",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.2",
|
|
4
4
|
"description": "Parall local agent runtime — daemon supervisor + bridge runtimes, bundled as standalone JS files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@parall/
|
|
33
|
-
"@parall/
|
|
34
|
-
"@parall/claude-agent": "1.29.
|
|
35
|
-
"@parall/
|
|
36
|
-
"@parall/openclaw-agent": "1.29.
|
|
32
|
+
"@parall/sdk": "1.29.2",
|
|
33
|
+
"@parall/codex-agent": "1.29.2",
|
|
34
|
+
"@parall/claude-agent": "1.29.2",
|
|
35
|
+
"@parall/agent-core": "1.29.2",
|
|
36
|
+
"@parall/openclaw-agent": "1.29.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^22.0.0",
|