@powerlines/plugin-typedoc 0.10.68 → 0.10.70
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.
|
@@ -215,18 +215,18 @@ 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<
|
|
218
|
+
dedupe?: false | ((other: Plugin<TContext>) => 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<
|
|
222
|
+
dependsOn?: PluginConfig<TContext>[];
|
|
223
223
|
/**
|
|
224
224
|
* Define environments where this plugin should be active. By default, the plugin is active in all environments.
|
|
225
225
|
*
|
|
226
226
|
* @param environment - The environment to check.
|
|
227
227
|
* @returns `true` if the plugin should be active in the specified environment, `false` otherwise.
|
|
228
228
|
*/
|
|
229
|
-
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => boolean | PluginConfig<
|
|
229
|
+
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => boolean | PluginConfig<TContext>;
|
|
230
230
|
}
|
|
231
231
|
//#endregion
|
|
232
232
|
export { Plugin };
|
|
@@ -215,18 +215,18 @@ 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<
|
|
218
|
+
dedupe?: false | ((other: Plugin<TContext>) => 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<
|
|
222
|
+
dependsOn?: PluginConfig<TContext>[];
|
|
223
223
|
/**
|
|
224
224
|
* Define environments where this plugin should be active. By default, the plugin is active in all environments.
|
|
225
225
|
*
|
|
226
226
|
* @param environment - The environment to check.
|
|
227
227
|
* @returns `true` if the plugin should be active in the specified environment, `false` otherwise.
|
|
228
228
|
*/
|
|
229
|
-
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => boolean | PluginConfig<
|
|
229
|
+
applyToEnvironment?: (environment: EnvironmentResolvedConfig) => boolean | PluginConfig<TContext>;
|
|
230
230
|
}
|
|
231
231
|
//#endregion
|
|
232
232
|
export { Plugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-typedoc",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.70",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -100,19 +100,19 @@
|
|
|
100
100
|
"files": ["dist/**/*"],
|
|
101
101
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@storm-software/config-tools": "^1.188.
|
|
103
|
+
"@storm-software/config-tools": "^1.188.63",
|
|
104
104
|
"@stryke/fs": "^0.33.20",
|
|
105
105
|
"@stryke/path": "^0.22.11",
|
|
106
|
-
"powerlines": "^0.30.
|
|
106
|
+
"powerlines": "^0.30.13",
|
|
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.
|
|
112
|
-
"@storm-software/tsup": "^0.2.
|
|
111
|
+
"@powerlines/nx": "^0.10.62",
|
|
112
|
+
"@storm-software/tsup": "^0.2.61",
|
|
113
113
|
"@types/node": "^24.10.1",
|
|
114
114
|
"tsup": "8.4.0"
|
|
115
115
|
},
|
|
116
116
|
"publishConfig": { "access": "public" },
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "56e0428b32d445614bde031bbd30c077b1432641"
|
|
118
118
|
}
|