@powerlines/plugin-oxc-transform 0.5.72 → 0.5.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<
|
|
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
|
*/
|
|
@@ -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<
|
|
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
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-oxc-transform",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.73",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to transform project code with Oxc Transformer.",
|
|
6
6
|
"repository": {
|
|
@@ -125,13 +125,13 @@
|
|
|
125
125
|
"@stryke/path": "^0.22.11",
|
|
126
126
|
"defu": "^6.1.4",
|
|
127
127
|
"oxc-transform": "^0.99.0",
|
|
128
|
-
"powerlines": "^0.31.
|
|
128
|
+
"powerlines": "^0.31.1"
|
|
129
129
|
},
|
|
130
130
|
"devDependencies": {
|
|
131
|
-
"@powerlines/nx": "^0.10.
|
|
132
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
133
|
-
"@types/node": "^24.10.
|
|
131
|
+
"@powerlines/nx": "^0.10.64",
|
|
132
|
+
"@powerlines/plugin-plugin": "^0.12.16",
|
|
133
|
+
"@types/node": "^24.10.4"
|
|
134
134
|
},
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "970018c8e5c0c11f91527bdf8981930d6e05fcb2"
|
|
137
137
|
}
|