@powerlines/plugin-tamagui 0.1.52 → 0.1.54

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-tamagui",
3
- "version": "0.1.52",
3
+ "version": "0.1.54",
4
4
  "type": "module",
5
5
  "description": "A package containing the Tamagui plugin for Powerlines.",
6
6
  "repository": {
@@ -120,17 +120,17 @@
120
120
  "@stryke/path": "^0.22.11",
121
121
  "@stryke/fs": "^0.33.20",
122
122
  "@stryke/hash": "^0.12.26",
123
- "@tamagui/static-worker": "^1.139.2",
123
+ "@tamagui/static-worker": "^1.140.4",
124
124
  "defu": "^6.1.4",
125
- "powerlines": "^0.31.0",
125
+ "powerlines": "^0.31.2",
126
126
  "typescript": "^5.9.3",
127
127
  "vite": "8.0.0-beta.1"
128
128
  },
129
129
  "devDependencies": {
130
- "@powerlines/nx": "^0.10.63",
131
- "@tamagui/types": "^1.139.2",
132
- "@types/node": "^24.10.2"
130
+ "@powerlines/nx": "^0.10.65",
131
+ "@tamagui/types": "^1.140.4",
132
+ "@types/node": "^24.10.4"
133
133
  },
134
134
  "publishConfig": { "access": "public" },
135
- "gitHead": "2a4c29a361c5702474c60ee5f06a3e4e87d23c35"
135
+ "gitHead": "a94a0a087014c5ac4d4f4faf928695f95abe097f"
136
136
  }