@p4code/cli 0.0.35 → 0.0.37
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/{BunPtyAdapter-DogtLQSx.mjs → BunPtyAdapter-CLDq7yr1.mjs} +2 -2
- package/dist/{NodePtyAdapter-CS1weRcq.mjs → NodePtyAdapter-BQAnH2v0.mjs} +3 -3
- package/dist/{PtyAdapter-DO4FyE0R.mjs → PtyAdapter-DLKyoorI.mjs} +2 -2
- package/dist/bin.mjs +1094 -898
- package/dist/client/assets/{DiffPanel-DZwXXRpa.js → DiffPanel-xkGxJH4k.js} +2 -2
- package/dist/client/assets/{FilePreviewPanel-BHk87SKl.js → FilePreviewPanel-CmJUrNYJ.js} +2 -2
- package/dist/client/assets/{PreviewPanel-Cy7Z3Mfj.js → PreviewPanel-B5dlT-n2.js} +2 -2
- package/dist/client/assets/{fileCommentAnnotations-BBdil_-3.js → fileCommentAnnotations-BKadMjLJ.js} +2 -2
- package/dist/client/assets/{index-CXsSIu-m.js → index-qr_OWE66.js} +4 -4
- package/dist/client/index.html +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { c as HostProcessPlatform, n as PtySpawnError, t as PtyAdapter } from "./PtyAdapter-
|
|
3
|
+
import { c as HostProcessPlatform, n as PtySpawnError, t as PtyAdapter } from "./PtyAdapter-DLKyoorI.mjs";
|
|
4
4
|
import * as Effect from "effect/Effect";
|
|
5
5
|
import * as Layer from "effect/Layer";
|
|
6
6
|
import * as Schema from "effect/Schema";
|
|
@@ -119,4 +119,4 @@ const layer = Layer.effect(PtyAdapter, make());
|
|
|
119
119
|
//#endregion
|
|
120
120
|
export { BunPtyOperationUnavailableError, BunPtyUnsupportedPlatformError, layer, make };
|
|
121
121
|
|
|
122
|
-
//# sourceMappingURL=BunPtyAdapter-
|
|
122
|
+
//# sourceMappingURL=BunPtyAdapter-CLDq7yr1.mjs.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { c as HostProcessPlatform, n as PtySpawnError, r as HostProcessArchitecture, t as PtyAdapter } from "./PtyAdapter-
|
|
3
|
+
import { c as HostProcessPlatform, n as PtySpawnError, r as HostProcessArchitecture, t as PtyAdapter } from "./PtyAdapter-DLKyoorI.mjs";
|
|
4
4
|
import * as NodeModule from "node:module";
|
|
5
5
|
import * as Effect from "effect/Effect";
|
|
6
6
|
import * as Layer from "effect/Layer";
|
|
7
|
-
import * as Schema from "effect/Schema";
|
|
8
7
|
import * as FileSystem from "effect/FileSystem";
|
|
9
8
|
import * as Path from "effect/Path";
|
|
9
|
+
import * as Schema from "effect/Schema";
|
|
10
10
|
//#region src/terminal/NodePtyAdapter.ts
|
|
11
11
|
var NodePtyModuleLoadError = class extends Schema.TaggedErrorClass()("NodePtyModuleLoadError", {
|
|
12
12
|
platform: Schema.String,
|
|
@@ -115,4 +115,4 @@ const layer = Layer.effect(PtyAdapter, make());
|
|
|
115
115
|
//#endregion
|
|
116
116
|
export { NodePtyModuleLoadError, layer, make };
|
|
117
117
|
|
|
118
|
-
//# sourceMappingURL=NodePtyAdapter-
|
|
118
|
+
//# sourceMappingURL=NodePtyAdapter-BQAnH2v0.mjs.map
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import * as Effect from "effect/Effect";
|
|
4
4
|
import * as Context from "effect/Context";
|
|
5
|
-
import * as Schema from "effect/Schema";
|
|
6
5
|
import * as NodeOS from "node:os";
|
|
6
|
+
import * as Schema from "effect/Schema";
|
|
7
7
|
//#region ../../packages/shared/src/hostProcess.ts
|
|
8
8
|
const HostProcessPlatform = Context.Reference("@p4code/shared/hostProcess/HostProcessPlatform", { defaultValue: () => process.platform });
|
|
9
9
|
const HostProcessArchitecture = Context.Reference("@p4code/shared/hostProcess/HostProcessArchitecture", { defaultValue: () => process.arch });
|
|
@@ -51,4 +51,4 @@ var PtyAdapter = class extends Context.Service()("@p4code/cli/terminal/PtyAdapte
|
|
|
51
51
|
//#endregion
|
|
52
52
|
export { HostProcessEnvironment as a, HostProcessPlatform as c, HostProcessArguments as i, HostProcessUserId as l, PtySpawnError as n, HostProcessExecutablePath as o, HostProcessArchitecture as r, HostProcessHostname as s, PtyAdapter as t };
|
|
53
53
|
|
|
54
|
-
//# sourceMappingURL=PtyAdapter-
|
|
54
|
+
//# sourceMappingURL=PtyAdapter-DLKyoorI.mjs.map
|