paratix 0.12.5 → 0.12.8
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/{chunk-G5GVLFAI.js → chunk-M3ZQJNKM.js} +4 -2
- package/dist/chunk-M3ZQJNKM.js.map +1 -0
- package/dist/cli.js +60 -28
- package/dist/cli.js.map +1 -1
- package/dist/index.js +50 -22
- package/dist/index.js.map +1 -1
- package/dist/modules/index.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-G5GVLFAI.js.map +0 -1
|
@@ -648,6 +648,8 @@ import { Readable } from "stream";
|
|
|
648
648
|
// src/terminal.ts
|
|
649
649
|
import { createInterface } from "readline";
|
|
650
650
|
import { Writable } from "stream";
|
|
651
|
+
var ASCII_ESC = 27;
|
|
652
|
+
var ANSI_SHOW_CURSOR = `${String.fromCharCode(ASCII_ESC)}[?25h`;
|
|
651
653
|
|
|
652
654
|
// src/ssh.ts
|
|
653
655
|
function assertValidMktempDirectory(directory) {
|
|
@@ -3376,7 +3378,7 @@ async function getRuntime(ssh2, action, explicit) {
|
|
|
3376
3378
|
return detectRuntime(ssh2);
|
|
3377
3379
|
}
|
|
3378
3380
|
function composeCommand(runtime, projectDirectory) {
|
|
3379
|
-
return
|
|
3381
|
+
return `cd ${shellQuote(projectDirectory)} && ${runtime} compose`;
|
|
3380
3382
|
}
|
|
3381
3383
|
function parseComposeProjectName(stdout, projectDirectory) {
|
|
3382
3384
|
try {
|
|
@@ -19068,4 +19070,4 @@ export {
|
|
|
19068
19070
|
ufw,
|
|
19069
19071
|
user
|
|
19070
19072
|
};
|
|
19071
|
-
//# sourceMappingURL=chunk-
|
|
19073
|
+
//# sourceMappingURL=chunk-M3ZQJNKM.js.map
|