@powerlines/engine 0.0.21 → 0.0.22
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/_internal/worker.cjs +9 -0
- package/dist/_internal/worker.mjs +9 -0
- package/dist/_internal/worker.mjs.map +1 -1
- package/dist/api.cjs +1 -1
- package/dist/api.mjs +1 -1
- package/dist/context/index.cjs +1 -1
- package/dist/context/index.d.cts +4 -0
- package/dist/context/index.d.cts.map +1 -1
- package/dist/context/index.d.mts +4 -0
- package/dist/context/index.d.mts.map +1 -1
- package/dist/context/index.mjs +1 -1
- package/dist/{execution-context-BfjTpQJa.cjs → execution-context-B8ABpv72.cjs} +9 -0
- package/dist/{execution-context-C9Sc40wg.mjs → execution-context-Bc5v80Bd.mjs} +10 -1
- package/dist/execution-context-Bc5v80Bd.mjs.map +1 -0
- package/package.json +3 -3
- package/dist/execution-context-C9Sc40wg.mjs.map +0 -1
|
@@ -2558,6 +2558,15 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
2558
2558
|
return Object.values(this.fs.metadata).filter((meta) => meta && meta.type === "builtin").map((meta) => meta?.id).filter(Boolean);
|
|
2559
2559
|
}
|
|
2560
2560
|
/**
|
|
2561
|
+
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
2562
|
+
*/
|
|
2563
|
+
get additionalArgs() {
|
|
2564
|
+
return Object.entries(this.config.inlineConfig?.additionalArgs ?? {}).reduce((ret, [key, value]) => {
|
|
2565
|
+
ret[key.replace(/^--?/, "")] = value;
|
|
2566
|
+
return ret;
|
|
2567
|
+
}, {});
|
|
2568
|
+
}
|
|
2569
|
+
/**
|
|
2561
2570
|
* The alias mappings for the project used during module resolution
|
|
2562
2571
|
*
|
|
2563
2572
|
* @remarks
|
|
@@ -2525,6 +2525,15 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
2525
2525
|
return Object.values(this.fs.metadata).filter((meta) => meta && meta.type === "builtin").map((meta) => meta?.id).filter(Boolean);
|
|
2526
2526
|
}
|
|
2527
2527
|
/**
|
|
2528
|
+
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
2529
|
+
*/
|
|
2530
|
+
get additionalArgs() {
|
|
2531
|
+
return Object.entries(this.config.inlineConfig?.additionalArgs ?? {}).reduce((ret, [key, value]) => {
|
|
2532
|
+
ret[key.replace(/^--?/, "")] = value;
|
|
2533
|
+
return ret;
|
|
2534
|
+
}, {});
|
|
2535
|
+
}
|
|
2536
|
+
/**
|
|
2528
2537
|
* The alias mappings for the project used during module resolution
|
|
2529
2538
|
*
|
|
2530
2539
|
* @remarks
|