@skaile/workspaces 0.16.0 → 0.17.0
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/CHANGELOG.md +10 -0
- package/dist/asset-manager/index.js +1 -1
- package/dist/base-assets/connectors/deploy.js +1 -1
- package/dist/base-assets/connectors/devserver.js +1 -1
- package/dist/base-assets/connectors/flow/adapter.js +1 -1
- package/dist/base-assets/connectors/flow/run-flow.js +2 -2
- package/dist/base-assets/connectors/flow.js +1 -1
- package/dist/base-assets/connectors/git/driver.d.ts.map +1 -1
- package/dist/base-assets/connectors/git.js +1 -1
- package/dist/base-assets/connectors/gmail.js +1 -1
- package/dist/base-assets/connectors/googledrive.js +1 -1
- package/dist/base-assets/connectors/local.js +1 -1
- package/dist/base-assets/connectors/mattermost.js +1 -1
- package/dist/base-assets/connectors/memory.js +1 -1
- package/dist/base-assets/connectors/minio.js +1 -1
- package/dist/base-assets/connectors/postgres.js +1 -1
- package/dist/base-assets/connectors/redis.js +1 -1
- package/dist/base-assets/connectors/s3.js +1 -1
- package/dist/base-assets/connectors/sharepoint.js +1 -1
- package/dist/base-assets/connectors/sqlite.js +1 -1
- package/dist/base-assets/connectors/static-server.js +1 -1
- package/dist/base-assets/connectors/tunnel.js +1 -1
- package/dist/base-assets/connectors/webdav.js +1 -1
- package/dist/base-assets/connectors/xstate-store.js +1 -1
- package/dist/base-assets/connectors/xstate.js +1 -1
- package/dist/base-assets/connectors/yjs.js +1 -1
- package/dist/{chunk-YW36VEVN.js → chunk-6SCFOXJ5.js} +36 -4
- package/dist/chunk-6SCFOXJ5.js.map +1 -0
- package/dist/{chunk-ZUQXHBEH.js → chunk-76CUXLXI.js} +2 -2
- package/dist/{chunk-ZUQXHBEH.js.map → chunk-76CUXLXI.js.map} +1 -1
- package/dist/{chunk-YMMWP3YL.js → chunk-DG7WFRUM.js} +2 -2
- package/dist/{chunk-YMMWP3YL.js.map → chunk-DG7WFRUM.js.map} +1 -1
- package/dist/{chunk-75M5W7FX.js → chunk-J6T5YXLN.js} +4 -4
- package/dist/{chunk-75M5W7FX.js.map → chunk-J6T5YXLN.js.map} +1 -1
- package/dist/{chunk-ALJM24WL.js → chunk-PXABRXBP.js} +3 -3
- package/dist/{chunk-ALJM24WL.js.map → chunk-PXABRXBP.js.map} +1 -1
- package/dist/cli/index.js +5 -5
- package/dist/connectors/index.js +1 -1
- package/dist/runner/index.js +3 -3
- package/dist/sdk/asset-manager.js +1 -1
- package/dist/sdk/index.js +3 -3
- package/dist/sdk/runner.js +3 -3
- package/dist/tui/index.js +3 -3
- package/dist/workspace-plugin/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-YW36VEVN.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#38](https://github.com/skaile-ai/workspaces/pull/38) [`ff8f026`](https://github.com/skaile-ai/workspaces/commit/ff8f0262b142420bb2601225e99b059c8ab2edaf) Thanks [@Frozen666](https://github.com/Frozen666)! - Add `session.fromRef` option to the git mount driver so a freshly-created session branch can be anchored at an arbitrary ref instead of always branching from the cloned base branch.
|
|
8
|
+
|
|
9
|
+
When the session branch does not yet exist on origin and `fromRef` is set, the driver runs `git fetch origin <fromRef>` followed by `git checkout -b <sessionBranch> FETCH_HEAD`. If the fetch fails (ref doesn't exist on the remote), the driver logs a warning and falls back to the previous behavior (branch from base). When the session branch already exists on origin, `fromRef` is ignored — existing branches win.
|
|
10
|
+
|
|
11
|
+
Consumed by the platform's session-fork flow: forks now pass `fromRef = "skaile/session-<source-slug>"` so the fork branches off the source's tip rather than off `main`. Closes the runtime half of platform B-103.
|
|
12
|
+
|
|
3
13
|
## 0.16.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { DeployConnector, createConnector21 as createConnector } from '../../chunk-
|
|
1
|
+
export { DeployConnector, createConnector21 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { DevServerConnector, createConnector18 as createConnector } from '../../chunk-
|
|
1
|
+
export { DevServerConnector, createConnector18 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { resumeFlow, runFlow } from '../../../chunk-
|
|
1
|
+
export { resumeFlow, runFlow } from '../../../chunk-PXABRXBP.js';
|
|
2
2
|
import '../../../chunk-GCJXPUHG.js';
|
|
3
3
|
import '../../../chunk-IPUYL6TD.js';
|
|
4
|
-
import '../../../chunk-
|
|
4
|
+
import '../../../chunk-6SCFOXJ5.js';
|
|
5
5
|
import '../../../chunk-KJ2LLWRF.js';
|
|
6
6
|
import '../../../chunk-6MB7CRME.js';
|
|
7
7
|
import '../../../chunk-QAVZOJCV.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../../../base-assets/connectors/git/driver.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAkBH,OAAO,KAAK,EAGV,WAAW,EACX,YAAY,EACb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EACV,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,cAAc,EACf,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../../../base-assets/connectors/git/driver.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAkBH,OAAO,KAAK,EAGV,WAAW,EACX,YAAY,EACb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EACV,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,cAAc,EACf,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AA2MlE;;;;;;;;;;;;;GAaG;AACH,qBAAa,YAAa,SAAQ,iBAAiB;IACjD,QAAQ,CAAC,IAAI,SAAS;IAEtB,QAAQ,CAAC,UAAU,EAAE,cAAc,CAIjC;IAEI,OAAO,CAAC,WAAW,EAAE,oBAAoB,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,eAAe,CAAC;IAuK/F;;;;;;;;;;;;;;;OAeG;IACG,wBAAwB,CAAC,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAmCrF,UAAU,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;YAc1C,KAAK;IAeV,KAAK,CACZ,MAAM,EAAE,eAAe,EACvB,QAAQ,EAAE,CAAC,KAAK,EAAE,oBAAoB,KAAK,IAAI,EAC/C,OAAO,CAAC,EAAE,YAAY,GACrB,WAAW;IA0BC,WAAW,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAwBjE,cAAc,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;IAiDnF;;;;;;;OAOG;IACH,OAAO,CAAC,eAAe;IASvB;;;;;;;;;;;;;;;OAeG;YACW,mBAAmB;IA8DjC,OAAO,CAAC,uBAAuB;IAmG/B;;;;;;;OAOG;IACH,OAAO,CAAC,eAAe;YAcT,wBAAwB;IAmDtC,OAAO,CAAC,yBAAyB;IA8BjC;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,OAAO,CAAC,WAAW;IAgBnB;;;;;;;;OAQG;IACH,OAAO,CAAC,qBAAqB;IAS7B;;;;;;;;;;;;;;;;;;;OAmBG;IACH,OAAO,CAAC,mBAAmB;IAyB3B;;;;;;;;;;;;;;OAcG;IACH,OAAO,CAAC,4BAA4B;IAkCpC,OAAO,CAAC,OAAO;IAYf,OAAO,CAAC,kBAAkB;IAwB1B;;;;OAIG;IACH,OAAO,CAAC,uBAAuB;IAkD/B;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAkC3B,OAAO,CAAC,qBAAqB;IAM7B,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,iBAAiB;IAiBzB,OAAO,CAAC,qBAAqB;CAa9B;AAED;;;;GAIG;AACH,wBAAgB,eAAe,IAAI,YAAY,CAE9C"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { GitConnector, createConnector2 as createConnector } from '../../chunk-
|
|
1
|
+
export { GitConnector, createConnector2 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { GmailConnector, createConnector16 as createConnector } from '../../chunk-
|
|
1
|
+
export { GmailConnector, createConnector16 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { GoogleDriveConnector, createConnector7 as createConnector, parseAuthBlob } from '../../chunk-
|
|
1
|
+
export { GoogleDriveConnector, createConnector7 as createConnector, parseAuthBlob } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { LocalConnector, createConnector3 as createConnector } from '../../chunk-
|
|
1
|
+
export { LocalConnector, createConnector3 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { MattermostConnector, createConnector17 as createConnector } from '../../chunk-
|
|
1
|
+
export { MattermostConnector, createConnector17 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { MemoryConnector, createConnector8 as createConnector } from '../../chunk-
|
|
1
|
+
export { MemoryConnector, createConnector8 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { MinIOConnector, createConnector12 as createConnector } from '../../chunk-
|
|
1
|
+
export { MinIOConnector, createConnector12 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { PostgresConnector, createConnector9 as createConnector } from '../../chunk-
|
|
1
|
+
export { PostgresConnector, createConnector9 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { RedisConnector, createConnector10 as createConnector } from '../../chunk-
|
|
1
|
+
export { RedisConnector, createConnector10 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { S3Connector, createConnector4 as createConnector } from '../../chunk-
|
|
1
|
+
export { S3Connector, createConnector4 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { SharePointConnector, createConnector6 as createConnector } from '../../chunk-
|
|
1
|
+
export { SharePointConnector, createConnector6 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { SQLiteConnector, createConnector11 as createConnector } from '../../chunk-
|
|
1
|
+
export { SQLiteConnector, createConnector11 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { StaticServerConnector, createConnector19 as createConnector } from '../../chunk-
|
|
1
|
+
export { StaticServerConnector, createConnector19 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { TunnelConnector, createConnector20 as createConnector } from '../../chunk-
|
|
1
|
+
export { TunnelConnector, createConnector20 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { WebDAVConnector, createConnector5 as createConnector } from '../../chunk-
|
|
1
|
+
export { WebDAVConnector, createConnector5 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { XStateStoreConnector, createConnector14 as createConnector } from '../../chunk-
|
|
1
|
+
export { XStateStoreConnector, createConnector14 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { XStateConnector, createConnector13 as createConnector } from '../../chunk-
|
|
1
|
+
export { XStateConnector, createConnector13 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { YjsConnector, createConnector15 as createConnector } from '../../chunk-
|
|
1
|
+
export { YjsConnector, createConnector15 as createConnector } from '../../chunk-6SCFOXJ5.js';
|
|
2
2
|
import '../../chunk-KJ2LLWRF.js';
|
|
3
3
|
import '../../chunk-6MB7CRME.js';
|
|
4
4
|
import '../../chunk-QAVZOJCV.js';
|
|
@@ -58,7 +58,8 @@ function parseSessionConfig(opts) {
|
|
|
58
58
|
enabled: Boolean(raw.enabled ?? false),
|
|
59
59
|
slug: raw.slug != null ? String(raw.slug) : void 0,
|
|
60
60
|
isMain: Boolean(raw.isMain ?? true),
|
|
61
|
-
branchPrefix: String(raw.branchPrefix ?? "session/")
|
|
61
|
+
branchPrefix: String(raw.branchPrefix ?? "session/"),
|
|
62
|
+
fromRef: raw.fromRef != null ? String(raw.fromRef) : void 0
|
|
62
63
|
};
|
|
63
64
|
}
|
|
64
65
|
function parseSyncConfig(opts) {
|
|
@@ -83,6 +84,13 @@ function parseLifecycleConfig(opts) {
|
|
|
83
84
|
function git(cmd, cwd, timeout = 3e4) {
|
|
84
85
|
return execSync(`git ${cmd}`, { cwd, encoding: "utf-8", timeout, stdio: "pipe" }).trim();
|
|
85
86
|
}
|
|
87
|
+
function isValidGitRefOrSha(ref) {
|
|
88
|
+
if (ref.length === 0 || ref.length > 255) return false;
|
|
89
|
+
if (/[\s\\~^:?*[\x00-\x1f\x7f`$;&|'"<>()]/.test(ref)) return false;
|
|
90
|
+
if (ref.startsWith("-") || ref.endsWith(".lock") || ref.endsWith("/") || ref.endsWith(".")) return false;
|
|
91
|
+
if (ref.includes("..") || ref.includes("@{")) return false;
|
|
92
|
+
return true;
|
|
93
|
+
}
|
|
86
94
|
function hasChanges(cwd) {
|
|
87
95
|
const status = git("status --porcelain", cwd);
|
|
88
96
|
return status.length > 0;
|
|
@@ -179,7 +187,31 @@ var GitConnector = class extends AbstractConnector {
|
|
|
179
187
|
git(`rev-parse --verify origin/${sessionBranch}`, targetDir);
|
|
180
188
|
git(`checkout -B ${sessionBranch} origin/${sessionBranch}`, targetDir);
|
|
181
189
|
} catch {
|
|
182
|
-
|
|
190
|
+
let anchored = false;
|
|
191
|
+
if (session.fromRef) {
|
|
192
|
+
if (!isValidGitRefOrSha(session.fromRef)) {
|
|
193
|
+
this.log.warn("fromRef rejected by refname validation, falling back to base branch", {
|
|
194
|
+
sessionBranch,
|
|
195
|
+
fromRef: session.fromRef
|
|
196
|
+
});
|
|
197
|
+
} else {
|
|
198
|
+
try {
|
|
199
|
+
git(`fetch origin ${session.fromRef}`, targetDir);
|
|
200
|
+
git(`checkout -b ${sessionBranch} FETCH_HEAD`, targetDir);
|
|
201
|
+
anchored = true;
|
|
202
|
+
this.log.info("session branch created from fromRef", { sessionBranch, fromRef: session.fromRef });
|
|
203
|
+
} catch (err) {
|
|
204
|
+
this.log.warn("fromRef fetch failed, falling back to base branch", {
|
|
205
|
+
sessionBranch,
|
|
206
|
+
fromRef: session.fromRef,
|
|
207
|
+
error: err instanceof Error ? err.message : String(err)
|
|
208
|
+
});
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
if (!anchored) {
|
|
213
|
+
git(`checkout -b ${sessionBranch}`, targetDir);
|
|
214
|
+
}
|
|
183
215
|
}
|
|
184
216
|
state.activeBranch = sessionBranch;
|
|
185
217
|
this.log.info("session branch checked out", { sessionBranch });
|
|
@@ -7882,5 +7914,5 @@ function createConnector() {
|
|
|
7882
7914
|
}
|
|
7883
7915
|
|
|
7884
7916
|
export { AbstractConnector, ConnectorFieldMissingError, ConnectorManager, ConnectorStartupError, DeployConnector, DevServerConnector, FlowAdapter, GitConnector, GmailConnector, GoogleDriveConnector, LocalConnector, LogBuffer, ManagedGitconfigCollisionError, MattermostConnector, MemoryConnector, MinIOConnector, PostgresConnector, RedisConnector, S3Connector, SQLiteConnector, SharePointConnector, StaticServerConnector, TunnelConnector, WebDAVConnector, XStateConnector, XStateStoreConnector, YjsConnector, atomicReplaceCredential, buildConnectorPromptSection, buildSdkConnectorTools, createConnector, createConnector10, createConnector11, createConnector12, createConnector13, createConnector14, createConnector15, createConnector16, createConnector17, createConnector18, createConnector19, createConnector2, createConnector20, createConnector21, createConnector3, createConnector4, createConnector5, createConnector6, createConnector7, createConnector8, createConnector9, createFsWatcher, createWorktree, defaultSpawn, ensureFleetMounted, findGitRoot, findMissingPackages, getConnector, installNpmPackages, isFleetManaged, isPackageResolvable, listConnectors, listWorktrees, parseAuthBlob2 as parseAuthBlob, registerBuiltinConnectors, registerConnector, removeMountBlock, renderCredentialHelperScript, tryGetConnector, worktreeRegistry, writeHelperScript, writeMountBlock };
|
|
7885
|
-
//# sourceMappingURL=chunk-
|
|
7886
|
-
//# sourceMappingURL=chunk-
|
|
7917
|
+
//# sourceMappingURL=chunk-6SCFOXJ5.js.map
|
|
7918
|
+
//# sourceMappingURL=chunk-6SCFOXJ5.js.map
|