@scaffoldly/rowdy 0.1.0-beta.20251204133829.a428aa1 → 0.1.0-beta.20251204142944.f75b4cc
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/index.d.ts +2 -0
- package/dist/index.js +299 -110
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -205,6 +205,8 @@ declare class Result<P extends Pipeline> implements ILoggable {
|
|
|
205
205
|
type Secrets = Record<string, string>;
|
|
206
206
|
declare class Environment implements ILoggable {
|
|
207
207
|
readonly log: Logger;
|
|
208
|
+
private static _CONCURRENCY;
|
|
209
|
+
static get CONCURRENCY(): number;
|
|
208
210
|
abort: AbortController;
|
|
209
211
|
readonly signal: AbortSignal;
|
|
210
212
|
readonly bin: string | undefined;
|