@powerlines/plugin-content-collections 0.1.66 → 0.1.68

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.
@@ -295,7 +295,7 @@ interface CommonUserConfig extends BaseConfig {
295
295
  /**
296
296
  * A list of resolvable paths to plugins used during the build process
297
297
  */
298
- plugins?: PluginConfig<PluginContext<any>>[];
298
+ plugins?: PluginConfig<any>[];
299
299
  /**
300
300
  * Environment-specific configurations
301
301
  */
@@ -295,7 +295,7 @@ interface CommonUserConfig extends BaseConfig {
295
295
  /**
296
296
  * A list of resolvable paths to plugins used during the build process
297
297
  */
298
- plugins?: PluginConfig<PluginContext<any>>[];
298
+ plugins?: PluginConfig<any>[];
299
299
  /**
300
300
  * Environment-specific configurations
301
301
  */
@@ -215,7 +215,7 @@ 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<any>) => boolean);
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
  */
@@ -215,7 +215,7 @@ 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<any>) => boolean);
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-content-collections",
3
- "version": "0.1.66",
3
+ "version": "0.1.68",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to generate project code using Content Collections.",
6
6
  "repository": {
@@ -130,15 +130,15 @@
130
130
  "@stryke/types": "^0.10.23",
131
131
  "defu": "^6.1.4",
132
132
  "pluralize": "^8.0.0",
133
- "powerlines": "^0.31.3"
133
+ "powerlines": "^0.31.5"
134
134
  },
135
135
  "devDependencies": {
136
- "@powerlines/nx": "^0.10.66",
137
- "@powerlines/plugin-plugin": "^0.12.18",
136
+ "@powerlines/nx": "^0.10.68",
137
+ "@powerlines/plugin-plugin": "^0.12.20",
138
138
  "@standard-schema/spec": "^1.0.0",
139
139
  "@types/node": "^24.10.4",
140
140
  "@types/pluralize": "^0.0.33"
141
141
  },
142
142
  "publishConfig": { "access": "public" },
143
- "gitHead": "289cb434f51a739778cf6e9893663e4af0f0fdc0"
143
+ "gitHead": "7ad7c79f886d8479c02ce627d0e206f57000e602"
144
144
  }