@powerlines/plugin-vite 0.14.63 → 0.14.65

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.
@@ -181,7 +181,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = { [TKey in ke
181
181
  }) => MaybePromise<string | ExternalIdResult | null | undefined>, "id">;
182
182
  };
183
183
  type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = { [TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant> };
184
- interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
184
+ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
185
185
  /**
186
186
  * The name of the plugin, for use in deduplication, error messages and logs.
187
187
  */
@@ -218,7 +218,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
218
218
  * @param other - The other plugin to compare against.
219
219
  * @returns `true` if the two plugins are the same, `false` otherwise.
220
220
  */
221
- dedupe?: false | ((other: Plugin<TContext>) => boolean);
221
+ dedupe?: false | ((other: Plugin<any>) => boolean);
222
222
  /**
223
223
  * A list of pre-requisite plugins that must be loaded before this plugin can be used.
224
224
  */
@@ -181,7 +181,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = { [TKey in ke
181
181
  }) => MaybePromise<string | ExternalIdResult | null | undefined>, "id">;
182
182
  };
183
183
  type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = { [TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant> };
184
- interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
184
+ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
185
185
  /**
186
186
  * The name of the plugin, for use in deduplication, error messages and logs.
187
187
  */
@@ -218,7 +218,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
218
218
  * @param other - The other plugin to compare against.
219
219
  * @returns `true` if the two plugins are the same, `false` otherwise.
220
220
  */
221
- dedupe?: false | ((other: Plugin<TContext>) => boolean);
221
+ dedupe?: false | ((other: Plugin<any>) => boolean);
222
222
  /**
223
223
  * A list of pre-requisite plugins that must be loaded before this plugin can be used.
224
224
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-vite",
3
- "version": "0.14.63",
3
+ "version": "0.14.65",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -152,14 +152,14 @@
152
152
  "defu": "^6.1.4",
153
153
  "jiti": "^2.6.1",
154
154
  "vite": "8.0.0-beta.1",
155
- "powerlines": "^0.31.0"
155
+ "powerlines": "^0.31.2"
156
156
  },
157
157
  "devDependencies": {
158
158
  "vite": "8.0.0-beta.1",
159
- "@powerlines/nx": "^0.10.63",
160
- "@powerlines/plugin-plugin": "^0.12.15",
161
- "@types/node": "^24.10.2"
159
+ "@powerlines/nx": "^0.10.65",
160
+ "@powerlines/plugin-plugin": "^0.12.17",
161
+ "@types/node": "^24.10.4"
162
162
  },
163
163
  "publishConfig": { "access": "public" },
164
- "gitHead": "2a4c29a361c5702474c60ee5f06a3e4e87d23c35"
164
+ "gitHead": "a94a0a087014c5ac4d4f4faf928695f95abe097f"
165
165
  }