@powerlines/plugin-typedoc 0.10.71 → 0.10.73

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.
@@ -178,7 +178,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = { [TKey in ke
178
178
  }) => MaybePromise<string | ExternalIdResult | null | undefined>, "id">;
179
179
  };
180
180
  type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = { [TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant> };
181
- interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
181
+ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
182
182
  /**
183
183
  * The name of the plugin, for use in deduplication, error messages and logs.
184
184
  */
@@ -215,7 +215,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
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<TContext>) => boolean);
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
  */
@@ -178,7 +178,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = { [TKey in ke
178
178
  }) => MaybePromise<string | ExternalIdResult | null | undefined>, "id">;
179
179
  };
180
180
  type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = { [TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant> };
181
- interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
181
+ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
182
182
  /**
183
183
  * The name of the plugin, for use in deduplication, error messages and logs.
184
184
  */
@@ -215,7 +215,7 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
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<TContext>) => boolean);
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-typedoc",
3
- "version": "0.10.71",
3
+ "version": "0.10.73",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
6
6
  "repository": {
@@ -103,16 +103,16 @@
103
103
  "@storm-software/config-tools": "^1.188.65",
104
104
  "@stryke/fs": "^0.33.20",
105
105
  "@stryke/path": "^0.22.11",
106
- "powerlines": "^0.31.0",
106
+ "powerlines": "^0.31.2",
107
107
  "typedoc": "0.25.12",
108
108
  "typedoc-plugin-markdown": "4.0.0-next.20"
109
109
  },
110
110
  "devDependencies": {
111
- "@powerlines/nx": "^0.10.63",
111
+ "@powerlines/nx": "^0.10.65",
112
112
  "@storm-software/tsup": "^0.2.63",
113
- "@types/node": "^24.10.2",
113
+ "@types/node": "^24.10.4",
114
114
  "tsup": "8.4.0"
115
115
  },
116
116
  "publishConfig": { "access": "public" },
117
- "gitHead": "2a4c29a361c5702474c60ee5f06a3e4e87d23c35"
117
+ "gitHead": "a94a0a087014c5ac4d4f4faf928695f95abe097f"
118
118
  }