@hagicode/hagiscript 0.1.0-dev.16.1.507065a → 0.1.0-dev.18.1.99c9125
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/runtime/command-launch.d.ts +9 -0
- package/dist/runtime/command-launch.js +25 -0
- package/dist/runtime/command-launch.js.map +1 -0
- package/dist/runtime/node-verify.d.ts +3 -1
- package/dist/runtime/node-verify.js +9 -3
- package/dist/runtime/node-verify.js.map +1 -1
- package/dist/runtime/npm-global.d.ts +4 -1
- package/dist/runtime/npm-global.js +5 -3
- package/dist/runtime/npm-global.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface CommandLaunchOptions {
|
|
2
|
+
platform?: NodeJS.Platform;
|
|
3
|
+
}
|
|
4
|
+
export interface RuntimeExecFileOptions {
|
|
5
|
+
shell?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare function normalizeCommandPath(commandPath: string): string;
|
|
8
|
+
export declare function requiresShellLaunch(commandPath: string, platform?: NodeJS.Platform): boolean;
|
|
9
|
+
export declare function getCommandLaunchOptions(commandPath: string, options?: CommandLaunchOptions): RuntimeExecFileOptions;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { extname } from "node:path";
|
|
2
|
+
export function normalizeCommandPath(commandPath) {
|
|
3
|
+
const trimmed = commandPath.trim();
|
|
4
|
+
if (trimmed.length >= 2) {
|
|
5
|
+
const first = trimmed[0];
|
|
6
|
+
const last = trimmed[trimmed.length - 1];
|
|
7
|
+
if ((first === '"' && last === '"') || (first === "'" && last === "'")) {
|
|
8
|
+
return trimmed.slice(1, -1);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return trimmed;
|
|
12
|
+
}
|
|
13
|
+
export function requiresShellLaunch(commandPath, platform = process.platform) {
|
|
14
|
+
if (platform !== "win32") {
|
|
15
|
+
return false;
|
|
16
|
+
}
|
|
17
|
+
const extension = extname(normalizeCommandPath(commandPath)).toLowerCase();
|
|
18
|
+
return extension === ".cmd" || extension === ".bat";
|
|
19
|
+
}
|
|
20
|
+
export function getCommandLaunchOptions(commandPath, options = {}) {
|
|
21
|
+
return requiresShellLaunch(commandPath, options.platform)
|
|
22
|
+
? { shell: true }
|
|
23
|
+
: {};
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=command-launch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"command-launch.js","sourceRoot":"","sources":["../../src/runtime/command-launch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAUpC,MAAM,UAAU,oBAAoB,CAAC,WAAmB;IACtD,MAAM,OAAO,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC;IAEnC,IAAI,OAAO,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC;QACxB,MAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;QACzB,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAEzC,IAAI,CAAC,KAAK,KAAK,GAAG,IAAI,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,KAAK,GAAG,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE,CAAC;YACvE,OAAO,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC9B,CAAC;IACH,CAAC;IAED,OAAO,OAAO,CAAC;AACjB,CAAC;AAED,MAAM,UAAU,mBAAmB,CACjC,WAAmB,EACnB,WAA4B,OAAO,CAAC,QAAQ;IAE5C,IAAI,QAAQ,KAAK,OAAO,EAAE,CAAC;QACzB,OAAO,KAAK,CAAC;IACf,CAAC;IAED,MAAM,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IAC3E,OAAO,SAAS,KAAK,MAAM,IAAI,SAAS,KAAK,MAAM,CAAC;AACtD,CAAC;AAED,MAAM,UAAU,uBAAuB,CACrC,WAAmB,EACnB,UAAgC,EAAE;IAElC,OAAO,mBAAmB,CAAC,WAAW,EAAE,OAAO,CAAC,QAAQ,CAAC;QACvD,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE;QACjB,CAAC,CAAC,EAAE,CAAC;AACT,CAAC"}
|
|
@@ -14,7 +14,9 @@ export interface NodeRuntimeVerificationResult {
|
|
|
14
14
|
export interface VerifyNodeRuntimeOptions {
|
|
15
15
|
platform?: NodeJS.Platform;
|
|
16
16
|
timeoutMs?: number;
|
|
17
|
-
runCommand?: (command: string, args: string[], timeoutMs: number
|
|
17
|
+
runCommand?: (command: string, args: string[], timeoutMs: number, launchOptions?: {
|
|
18
|
+
shell?: boolean;
|
|
19
|
+
}) => Promise<string>;
|
|
18
20
|
}
|
|
19
21
|
export declare function verifyNodeRuntime(targetDirectory: string, options?: VerifyNodeRuntimeOptions): Promise<NodeRuntimeVerificationResult>;
|
|
20
22
|
export declare function getRuntimeExecutablePaths(targetDirectory: string, platform?: NodeJS.Platform): RuntimeExecutablePaths;
|
|
@@ -3,6 +3,7 @@ import { join } from "node:path";
|
|
|
3
3
|
import { constants } from "node:fs";
|
|
4
4
|
import { execFile } from "node:child_process";
|
|
5
5
|
import { promisify } from "node:util";
|
|
6
|
+
import { getCommandLaunchOptions } from "./command-launch.js";
|
|
6
7
|
const execFileAsync = promisify(execFile);
|
|
7
8
|
export async function verifyNodeRuntime(targetDirectory, options = {}) {
|
|
8
9
|
const timeoutMs = options.timeoutMs ?? 15_000;
|
|
@@ -12,8 +13,12 @@ export async function verifyNodeRuntime(targetDirectory, options = {}) {
|
|
|
12
13
|
await access(paths.nodePath, constants.X_OK);
|
|
13
14
|
await access(paths.npmPath, constants.X_OK);
|
|
14
15
|
const [nodeVersion, npmVersion] = await Promise.all([
|
|
15
|
-
runCommand(paths.nodePath, ["--version"], timeoutMs
|
|
16
|
-
|
|
16
|
+
runCommand(paths.nodePath, ["--version"], timeoutMs, {
|
|
17
|
+
...getCommandLaunchOptions(paths.nodePath, { platform: options.platform })
|
|
18
|
+
}),
|
|
19
|
+
runCommand(paths.npmPath, ["--version"], timeoutMs, {
|
|
20
|
+
...getCommandLaunchOptions(paths.npmPath, { platform: options.platform })
|
|
21
|
+
})
|
|
17
22
|
]);
|
|
18
23
|
return {
|
|
19
24
|
valid: true,
|
|
@@ -46,11 +51,12 @@ export function getRuntimeExecutablePaths(targetDirectory, platform = process.pl
|
|
|
46
51
|
npmPath: join(targetDirectory, "bin", "npm")
|
|
47
52
|
};
|
|
48
53
|
}
|
|
49
|
-
async function runVersionCommand(command, args, timeoutMs) {
|
|
54
|
+
async function runVersionCommand(command, args, timeoutMs, launchOptions = {}) {
|
|
50
55
|
try {
|
|
51
56
|
const { stdout } = await execFileAsync(command, args, {
|
|
52
57
|
timeout: timeoutMs,
|
|
53
58
|
windowsHide: true,
|
|
59
|
+
...launchOptions,
|
|
54
60
|
maxBuffer: 1024 * 1024
|
|
55
61
|
});
|
|
56
62
|
return stdout;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node-verify.js","sourceRoot":"","sources":["../../src/runtime/node-verify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,QAAQ,EAA0B,MAAM,oBAAoB,CAAC;AACtE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"node-verify.js","sourceRoot":"","sources":["../../src/runtime/node-verify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,QAAQ,EAA0B,MAAM,oBAAoB,CAAC;AACtE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,MAAM,aAAa,GAAG,SAAS,CAAC,QAAQ,CAAC,CAAC;AA4B1C,MAAM,CAAC,KAAK,UAAU,iBAAiB,CACrC,eAAuB,EACvB,UAAoC,EAAE;IAEtC,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,IAAI,MAAM,CAAC;IAC9C,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,iBAAiB,CAAC;IAC3D,MAAM,KAAK,GAAG,yBAAyB,CAAC,eAAe,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC;IAE3E,IAAI,CAAC;QACH,MAAM,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;QAC7C,MAAM,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;QAE5C,MAAM,CAAC,WAAW,EAAE,UAAU,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;YAClD,UAAU,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE;gBACnD,GAAG,uBAAuB,CAAC,KAAK,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAO,CAAC,QAAQ,EAAE,CAAC;aAC3E,CAAC;YACF,UAAU,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE;gBAClD,GAAG,uBAAuB,CAAC,KAAK,CAAC,OAAO,EAAE,EAAE,QAAQ,EAAE,OAAO,CAAC,QAAQ,EAAE,CAAC;aAC1E,CAAC;SACH,CAAC,CAAC;QAEH,OAAO;YACL,KAAK,EAAE,IAAI;YACX,eAAe;YACf,WAAW,EAAE,WAAW,CAAC,IAAI,EAAE;YAC/B,UAAU,EAAE,UAAU,CAAC,IAAI,EAAE;YAC7B,QAAQ,EAAE,KAAK,CAAC,QAAQ;YACxB,OAAO,EAAE,KAAK,CAAC,OAAO;SACvB,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,KAAK,EAAE,KAAK;YACZ,eAAe;YACf,QAAQ,EAAE,KAAK,CAAC,QAAQ;YACxB,OAAO,EAAE,KAAK,CAAC,OAAO;YACtB,aAAa,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;SACtE,CAAC;IACJ,CAAC;AACH,CAAC;AAED,MAAM,UAAU,yBAAyB,CACvC,eAAuB,EACvB,WAA4B,OAAO,CAAC,QAAQ;IAE5C,IAAI,QAAQ,KAAK,OAAO,EAAE,CAAC;QACzB,OAAO;YACL,QAAQ,EAAE,IAAI,CAAC,eAAe,EAAE,UAAU,CAAC;YAC3C,OAAO,EAAE,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC;SAC1C,CAAC;IACJ,CAAC;IAED,OAAO;QACL,QAAQ,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,EAAE,MAAM,CAAC;QAC9C,OAAO,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,EAAE,KAAK,CAAC;KAC7C,CAAC;AACJ,CAAC;AAED,KAAK,UAAU,iBAAiB,CAC9B,OAAe,EACf,IAAc,EACd,SAAiB,EACjB,gBAAqC,EAAE;IAEvC,IAAI,CAAC;QACH,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,aAAa,CAAC,OAAO,EAAE,IAAI,EAAE;YACpD,OAAO,EAAE,SAAS;YAClB,WAAW,EAAE,IAAI;YACjB,GAAG,aAAa;YAChB,SAAS,EAAE,IAAI,GAAG,IAAI;SACvB,CAAC,CAAC;QAEH,OAAO,MAAM,CAAC;IAChB,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,MAAM,SAAS,GAAG,KAA0B,CAAC;QAC7C,MAAM,MAAM,GACV,OAAO,SAAS,CAAC,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACtE,MAAM,IAAI,KAAK,CACb,MAAM,CAAC,MAAM,GAAG,CAAC;YACf,CAAC,CAAC,MAAM;YACR,CAAC,CAAC,mBAAmB,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CACnD,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -14,8 +14,11 @@ export declare class NpmCommandError extends Error {
|
|
|
14
14
|
export interface NpmGlobalCommandOptions {
|
|
15
15
|
timeoutMs?: number;
|
|
16
16
|
env?: NodeJS.ProcessEnv;
|
|
17
|
+
platform?: NodeJS.Platform;
|
|
17
18
|
registryMirror?: string;
|
|
18
|
-
runCommand?: (command: string, args: string[], timeoutMs: number
|
|
19
|
+
runCommand?: (command: string, args: string[], timeoutMs: number, launchOptions?: {
|
|
20
|
+
shell?: boolean;
|
|
21
|
+
}) => Promise<NpmCommandResult>;
|
|
19
22
|
}
|
|
20
23
|
export declare function listGlobalPackages(npmPath: string, options?: NpmGlobalCommandOptions): Promise<NpmCommandResult>;
|
|
21
24
|
export declare function installGlobalPackage(npmPath: string, selector: string, options?: NpmGlobalCommandOptions): Promise<NpmCommandResult>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { execFile } from "node:child_process";
|
|
2
2
|
import { promisify } from "node:util";
|
|
3
|
+
import { getCommandLaunchOptions } from "./command-launch.js";
|
|
3
4
|
const execFileAsync = promisify(execFile);
|
|
4
5
|
export class NpmCommandError extends Error {
|
|
5
6
|
context;
|
|
@@ -30,15 +31,16 @@ async function runNpmCommand(npmPath, args, options) {
|
|
|
30
31
|
const timeoutMs = options.timeoutMs ?? 120_000;
|
|
31
32
|
const runner = options.runCommand
|
|
32
33
|
? options.runCommand
|
|
33
|
-
: (command, commandArgs, commandTimeoutMs) => execNpmCommand(command, commandArgs, commandTimeoutMs, options.env);
|
|
34
|
-
return runner(npmPath, args, timeoutMs);
|
|
34
|
+
: (command, commandArgs, commandTimeoutMs, launchOptions) => execNpmCommand(command, commandArgs, commandTimeoutMs, options.env, launchOptions);
|
|
35
|
+
return runner(npmPath, args, timeoutMs, getCommandLaunchOptions(npmPath, { platform: options.platform }));
|
|
35
36
|
}
|
|
36
|
-
async function execNpmCommand(command, args, timeoutMs, env) {
|
|
37
|
+
async function execNpmCommand(command, args, timeoutMs, env, launchOptions = {}) {
|
|
37
38
|
try {
|
|
38
39
|
const { stdout, stderr } = await execFileAsync(command, args, {
|
|
39
40
|
timeout: timeoutMs,
|
|
40
41
|
windowsHide: true,
|
|
41
42
|
env,
|
|
43
|
+
...launchOptions,
|
|
42
44
|
maxBuffer: 10 * 1024 * 1024
|
|
43
45
|
});
|
|
44
46
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"npm-global.js","sourceRoot":"","sources":["../../src/runtime/npm-global.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAA0B,MAAM,oBAAoB,CAAC;AACtE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"npm-global.js","sourceRoot":"","sources":["../../src/runtime/npm-global.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hagicode/hagiscript",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.18.1.99c9125",
|
|
4
4
|
"description": "Scoped npm package foundation for Hagiscript language tooling.",
|
|
5
5
|
"homepage": "https://github.com/HagiCode-org/hagiscript#readme",
|
|
6
6
|
"bugs": {
|