@d5render/cli 0.1.34 → 0.1.36
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/bin/copilot.js +1 -0
- package/bin/d5cli +2 -1
- package/package.json +1 -1
package/bin/copilot.js
CHANGED
|
@@ -18809,6 +18809,7 @@ const getHash = "hash";
|
|
|
18809
18809
|
const noMandatory = "dont't call under non-mandatory conditions";
|
|
18810
18810
|
const file = "bin/copilot.js";
|
|
18811
18811
|
const RUNTIME_CWD = join(dirname(fileURLToPath(import.meta.url)), "../");
|
|
18812
|
+
console.log("RUNTIME_CWD:", RUNTIME_CWD);
|
|
18812
18813
|
const serveFile = join(RUNTIME_CWD, file);
|
|
18813
18814
|
const envJson = buildEnv();
|
|
18814
18815
|
const envUsed = {
|
package/bin/d5cli
CHANGED
|
@@ -7,7 +7,7 @@ import { fileURLToPath } from "node:url";
|
|
|
7
7
|
|
|
8
8
|
//#region package.json
|
|
9
9
|
var name$1 = "@d5render/cli";
|
|
10
|
-
var version = "0.1.
|
|
10
|
+
var version = "0.1.36";
|
|
11
11
|
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region copilot/server/config.ts
|
|
@@ -16,6 +16,7 @@ const report = "report";
|
|
|
16
16
|
const getHash = "hash";
|
|
17
17
|
const file = "bin/copilot.js";
|
|
18
18
|
const RUNTIME_CWD = join(dirname(fileURLToPath(import.meta.url)), "../");
|
|
19
|
+
console.log("RUNTIME_CWD:", RUNTIME_CWD);
|
|
19
20
|
const serveFile = join(RUNTIME_CWD, file);
|
|
20
21
|
const envJson = buildEnv();
|
|
21
22
|
const envUsed = {
|