@powerlines/core 0.14.1 → 0.14.2
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/types/config.d.cts
CHANGED
|
@@ -481,7 +481,7 @@ type InlineConfig<TUserConfig extends UserConfig = UserConfig> = Partial<TUserCo
|
|
|
481
481
|
/**
|
|
482
482
|
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
483
483
|
*/
|
|
484
|
-
additionalArgs?: Record<string, string>;
|
|
484
|
+
additionalArgs?: Record<string, string | string[]>;
|
|
485
485
|
};
|
|
486
486
|
type NewInlineConfig<TUserConfig extends UserConfig = UserConfig> = InlineConfig<TUserConfig> & Required<Pick<InlineConfig<TUserConfig>, "root">> & {
|
|
487
487
|
/**
|
package/dist/types/config.d.mts
CHANGED
|
@@ -481,7 +481,7 @@ type InlineConfig<TUserConfig extends UserConfig = UserConfig> = Partial<TUserCo
|
|
|
481
481
|
/**
|
|
482
482
|
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
483
483
|
*/
|
|
484
|
-
additionalArgs?: Record<string, string>;
|
|
484
|
+
additionalArgs?: Record<string, string | string[]>;
|
|
485
485
|
};
|
|
486
486
|
type NewInlineConfig<TUserConfig extends UserConfig = UserConfig> = InlineConfig<TUserConfig> & Required<Pick<InlineConfig<TUserConfig>, "root">> & {
|
|
487
487
|
/**
|
package/dist/types/context.d.cts
CHANGED
|
@@ -338,7 +338,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
338
338
|
/**
|
|
339
339
|
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
340
340
|
*/
|
|
341
|
-
additionalArgs: Record<string, string>;
|
|
341
|
+
additionalArgs: Record<string, string | string[]>;
|
|
342
342
|
/**
|
|
343
343
|
* A function to perform HTTP fetch requests
|
|
344
344
|
*
|
package/dist/types/context.d.mts
CHANGED
|
@@ -338,7 +338,7 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
338
338
|
/**
|
|
339
339
|
* Additional arguments provided during execution of the command, such as CLI flags or other parameters that may be relevant to the command being executed.
|
|
340
340
|
*/
|
|
341
|
-
additionalArgs: Record<string, string>;
|
|
341
|
+
additionalArgs: Record<string, string | string[]>;
|
|
342
342
|
/**
|
|
343
343
|
* A function to perform HTTP fetch requests
|
|
344
344
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/core",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An internal core package for Powerlines - please use the `powerlines` package for public usage.",
|
|
6
6
|
"homepage": "https://stormsoftware.com",
|
|
@@ -569,5 +569,5 @@
|
|
|
569
569
|
"typescript": "^6.0.3"
|
|
570
570
|
},
|
|
571
571
|
"publishConfig": { "access": "public" },
|
|
572
|
-
"gitHead": "
|
|
572
|
+
"gitHead": "b683603833a7d11e315048f040e7aac22a4586f2"
|
|
573
573
|
}
|