@powerlines/plugin-crypto 0.10.68 → 0.10.69
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.
|
@@ -19,7 +19,7 @@ type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
|
19
19
|
* The {@link StormWorkspaceConfig | configuration} object for an entire Powerlines workspace
|
|
20
20
|
*/
|
|
21
21
|
type WorkspaceConfig = Partial<StormWorkspaceConfig> & Required<Pick<StormWorkspaceConfig, "workspaceRoot">>;
|
|
22
|
-
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext
|
|
22
|
+
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext> | Plugin<TContext>[]>;
|
|
23
23
|
/**
|
|
24
24
|
* A configuration tuple for a Powerlines plugin.
|
|
25
25
|
*/
|
|
@@ -37,7 +37,7 @@ type PluginConfigObject<TContext extends PluginContext = PluginContext, TOptions
|
|
|
37
37
|
/**
|
|
38
38
|
* A configuration tuple for a Powerlines plugin.
|
|
39
39
|
*/
|
|
40
|
-
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Promise<Plugin<TContext
|
|
40
|
+
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Plugin<TContext>[] | Promise<Plugin<TContext> | Plugin<TContext>[]> | PluginConfigTuple<TContext> | PluginConfigObject<TContext>;
|
|
41
41
|
type ProjectType = "application" | "library";
|
|
42
42
|
type BabelUserConfig = Parameters<typeof transformAsync>[1] & {
|
|
43
43
|
/**
|
|
@@ -20,7 +20,7 @@ type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
|
20
20
|
* The {@link StormWorkspaceConfig | configuration} object for an entire Powerlines workspace
|
|
21
21
|
*/
|
|
22
22
|
type WorkspaceConfig = Partial<StormWorkspaceConfig> & Required<Pick<StormWorkspaceConfig, "workspaceRoot">>;
|
|
23
|
-
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext
|
|
23
|
+
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext> | Plugin<TContext>[]>;
|
|
24
24
|
/**
|
|
25
25
|
* A configuration tuple for a Powerlines plugin.
|
|
26
26
|
*/
|
|
@@ -38,7 +38,7 @@ type PluginConfigObject<TContext extends PluginContext = PluginContext, TOptions
|
|
|
38
38
|
/**
|
|
39
39
|
* A configuration tuple for a Powerlines plugin.
|
|
40
40
|
*/
|
|
41
|
-
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Promise<Plugin<TContext
|
|
41
|
+
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Plugin<TContext>[] | Promise<Plugin<TContext> | Plugin<TContext>[]> | PluginConfigTuple<TContext> | PluginConfigObject<TContext>;
|
|
42
42
|
type ProjectType = "application" | "library";
|
|
43
43
|
type BabelUserConfig = Parameters<typeof transformAsync>[1] & {
|
|
44
44
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-crypto",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.69",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin that provides unique identifier generation capabilities at runtime by adding the `id` builtin module.",
|
|
6
6
|
"repository": {
|
|
@@ -128,17 +128,17 @@
|
|
|
128
128
|
"files": ["dist/**/*"],
|
|
129
129
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
130
130
|
"dependencies": {
|
|
131
|
-
"@powerlines/plugin-env": "^0.13.
|
|
131
|
+
"@powerlines/plugin-env": "^0.13.101",
|
|
132
132
|
"@storm-software/config-tools": "^1.188.73",
|
|
133
133
|
"@stryke/path": "^0.24.0",
|
|
134
134
|
"defu": "^6.1.4",
|
|
135
|
-
"powerlines": "^0.35.
|
|
135
|
+
"powerlines": "^0.35.1",
|
|
136
136
|
"@noble/ciphers": "^2.1.1"
|
|
137
137
|
},
|
|
138
138
|
"devDependencies": {
|
|
139
|
-
"@powerlines/nx": "^0.11.
|
|
139
|
+
"@powerlines/nx": "^0.11.24",
|
|
140
140
|
"@types/node": "^24.10.4"
|
|
141
141
|
},
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
|
-
"gitHead": "
|
|
143
|
+
"gitHead": "02f049f03f9e12a6fd5263ea8cbee3cdb6f896a3"
|
|
144
144
|
}
|