@powerlines/plugin-react 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.
@@ -306,7 +306,7 @@ interface CommonUserConfig extends BaseConfig {
306
306
  /**
307
307
  * A list of resolvable paths to plugins used during the build process
308
308
  */
309
- plugins?: PluginConfig<PluginContext<any>>[];
309
+ plugins?: PluginConfig<any>[];
310
310
  /**
311
311
  * Environment-specific configurations
312
312
  */
@@ -307,7 +307,7 @@ interface CommonUserConfig extends BaseConfig {
307
307
  /**
308
308
  * A list of resolvable paths to plugins used during the build process
309
309
  */
310
- plugins?: PluginConfig<PluginContext<any>>[];
310
+ plugins?: PluginConfig<any>[];
311
311
  /**
312
312
  * Environment-specific configurations
313
313
  */
@@ -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-react",
3
- "version": "0.1.66",
3
+ "version": "0.1.68",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for building a React application.",
6
6
  "repository": {
@@ -142,18 +142,18 @@
142
142
  "@stryke/fs": "^0.33.20",
143
143
  "@stryke/path": "^0.22.11",
144
144
  "babel-plugin-react-compiler": "^1.0.0",
145
- "@powerlines/alloy": "^0.11.75",
146
- "@powerlines/plugin-babel": "^0.12.75",
147
- "@powerlines/plugin-env": "^0.13.72",
148
- "@powerlines/plugin-plugin": "^0.12.18",
145
+ "@powerlines/alloy": "^0.11.77",
146
+ "@powerlines/plugin-babel": "^0.12.77",
147
+ "@powerlines/plugin-env": "^0.13.74",
148
+ "@powerlines/plugin-plugin": "^0.12.20",
149
149
  "@vitejs/plugin-react": "^5.1.2",
150
150
  "defu": "^6.1.4",
151
- "powerlines": "^0.31.3"
151
+ "powerlines": "^0.31.5"
152
152
  },
153
153
  "devDependencies": {
154
- "@powerlines/nx": "^0.10.66",
154
+ "@powerlines/nx": "^0.10.68",
155
155
  "@types/node": "^24.10.4"
156
156
  },
157
157
  "publishConfig": { "access": "public" },
158
- "gitHead": "289cb434f51a739778cf6e9893663e4af0f0fdc0"
158
+ "gitHead": "7ad7c79f886d8479c02ce627d0e206f57000e602"
159
159
  }