@powerlines/plugin-untyped 0.2.53 → 0.2.54
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.
|
@@ -39,7 +39,7 @@ interface BasePluginHookFunctions<TContext extends PluginContext = PluginContext
|
|
|
39
39
|
* @remarks
|
|
40
40
|
* Modify config before it's resolved. The hook can either mutate {@link Context.config} on the passed-in context directly, or return a partial config object that will be deeply merged into existing config.
|
|
41
41
|
*
|
|
42
|
-
* @warning User plugins are resolved before running this hook so injecting other plugins inside the config hook will have no effect.
|
|
42
|
+
* @warning User plugins are resolved before running this hook so injecting other plugins inside the config hook will have no effect.
|
|
43
43
|
*
|
|
44
44
|
* @see https://vitejs.dev/guide/api-plugin#config
|
|
45
45
|
*
|
|
@@ -215,11 +215,10 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
215
215
|
* @param other - The other plugin to compare against.
|
|
216
216
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
217
217
|
*/
|
|
218
|
-
dedupe?: false | ((other: Plugin<
|
|
218
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
219
219
|
/**
|
|
220
220
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
221
221
|
*/
|
|
222
|
-
dependsOn?: PluginConfig<TContext>[];
|
|
223
222
|
/**
|
|
224
223
|
* Define environments where this plugin should be active. By default, the plugin is active in all environments.
|
|
225
224
|
*
|
|
@@ -39,7 +39,7 @@ interface BasePluginHookFunctions<TContext extends PluginContext = PluginContext
|
|
|
39
39
|
* @remarks
|
|
40
40
|
* Modify config before it's resolved. The hook can either mutate {@link Context.config} on the passed-in context directly, or return a partial config object that will be deeply merged into existing config.
|
|
41
41
|
*
|
|
42
|
-
* @warning User plugins are resolved before running this hook so injecting other plugins inside the config hook will have no effect.
|
|
42
|
+
* @warning User plugins are resolved before running this hook so injecting other plugins inside the config hook will have no effect.
|
|
43
43
|
*
|
|
44
44
|
* @see https://vitejs.dev/guide/api-plugin#config
|
|
45
45
|
*
|
|
@@ -215,11 +215,10 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
215
215
|
* @param other - The other plugin to compare against.
|
|
216
216
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
217
217
|
*/
|
|
218
|
-
dedupe?: false | ((other: Plugin<
|
|
218
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
219
219
|
/**
|
|
220
220
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
221
221
|
*/
|
|
222
|
-
dependsOn?: PluginConfig<TContext>[];
|
|
223
222
|
/**
|
|
224
223
|
* Define environments where this plugin should be active. By default, the plugin is active in all environments.
|
|
225
224
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-untyped",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.54",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Untyped for code generation based on user-defined schemas.",
|
|
6
6
|
"repository": {
|
|
@@ -121,14 +121,14 @@
|
|
|
121
121
|
"defu": "^6.1.4",
|
|
122
122
|
"jiti": "^2.6.1",
|
|
123
123
|
"@storm-software/untyped": "^0.24.55",
|
|
124
|
-
"powerlines": "^0.36.
|
|
124
|
+
"powerlines": "^0.36.7"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"@storm-software/config": "^1.134.74",
|
|
128
|
-
"@powerlines/nx": "^0.11.
|
|
129
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
128
|
+
"@powerlines/nx": "^0.11.33",
|
|
129
|
+
"@powerlines/plugin-plugin": "^0.12.54",
|
|
130
130
|
"@types/node": "^24.10.4"
|
|
131
131
|
},
|
|
132
132
|
"publishConfig": { "access": "public" },
|
|
133
|
-
"gitHead": "
|
|
133
|
+
"gitHead": "abbf694ae460ab6f58ae645a000cabf4a4fdac80"
|
|
134
134
|
}
|