@powerlines/plugin-oxc-transform 0.5.397 → 0.5.399
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.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/plugin.d.cts +1 -5
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +1 -5
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
1
|
+
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig } from "./types/plugin.cjs";
|
|
2
2
|
import { Plugin } from "powerlines";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
@@ -15,5 +15,5 @@ declare module "powerlines" {
|
|
|
15
15
|
*/
|
|
16
16
|
declare const plugin: <TContext extends OxcTransformPluginContext = OxcTransformPluginContext>(options?: OxcTransformPluginOptions) => Plugin<TContext>;
|
|
17
17
|
//#endregion
|
|
18
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig,
|
|
18
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig, plugin as default, plugin };
|
|
19
19
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
1
|
+
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig } from "./types/plugin.mjs";
|
|
2
2
|
import { Plugin } from "powerlines";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
@@ -15,5 +15,5 @@ declare module "powerlines" {
|
|
|
15
15
|
*/
|
|
16
16
|
declare const plugin: <TContext extends OxcTransformPluginContext = OxcTransformPluginContext>(options?: OxcTransformPluginOptions) => Plugin<TContext>;
|
|
17
17
|
//#endregion
|
|
18
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig,
|
|
18
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig, plugin as default, plugin };
|
|
19
19
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
2
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
1
|
+
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig } from "./plugin.cjs";
|
|
2
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
2
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
1
|
+
import { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig } from "./plugin.mjs";
|
|
2
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -10,10 +10,6 @@ type OxcTransformPluginResolvedConfig = ResolvedConfig & {
|
|
|
10
10
|
oxcTransform?: OxcTransformPluginOptions;
|
|
11
11
|
};
|
|
12
12
|
type OxcTransformPluginContext<TResolvedConfig extends OxcTransformPluginResolvedConfig = OxcTransformPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
13
|
-
declare type __ΩOxcTransformPluginOptions = any[];
|
|
14
|
-
declare type __ΩOxcTransformPluginUserConfig = any[];
|
|
15
|
-
declare type __ΩOxcTransformPluginResolvedConfig = any[];
|
|
16
|
-
declare type __ΩOxcTransformPluginContext = any[];
|
|
17
13
|
//#endregion
|
|
18
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
14
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig };
|
|
19
15
|
//# sourceMappingURL=plugin.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAqBY,yBAAA,GAA4B,OAAA,CAAQ,gBAAA;AAAA,KAEpC,4BAAA,GAA+B,UAAA;EACzC,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,gCAAA,GAAmC,cAAA;EAC7C,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,yBAAA,yBACc,gCAAA,GACtB,gCAAA,IACA,aAAA,CAAc,eAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAqBY,yBAAA,GAA4B,OAAA,CAAQ,gBAAA;AAAA,KAEpC,4BAAA,GAA+B,UAAA;EACzC,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,gCAAA,GAAmC,cAAA;EAC7C,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,yBAAA,yBACc,gCAAA,GACtB,gCAAA,IACA,aAAA,CAAc,eAAA"}
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -10,10 +10,6 @@ type OxcTransformPluginResolvedConfig = ResolvedConfig & {
|
|
|
10
10
|
oxcTransform?: OxcTransformPluginOptions;
|
|
11
11
|
};
|
|
12
12
|
type OxcTransformPluginContext<TResolvedConfig extends OxcTransformPluginResolvedConfig = OxcTransformPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
13
|
-
declare type __ΩOxcTransformPluginOptions = any[];
|
|
14
|
-
declare type __ΩOxcTransformPluginUserConfig = any[];
|
|
15
|
-
declare type __ΩOxcTransformPluginResolvedConfig = any[];
|
|
16
|
-
declare type __ΩOxcTransformPluginContext = any[];
|
|
17
13
|
//#endregion
|
|
18
|
-
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig
|
|
14
|
+
export { OxcTransformPluginContext, OxcTransformPluginOptions, OxcTransformPluginResolvedConfig, OxcTransformPluginUserConfig };
|
|
19
15
|
//# sourceMappingURL=plugin.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAqBY,yBAAA,GAA4B,OAAA,CAAQ,gBAAA;AAAA,KAEpC,4BAAA,GAA+B,UAAA;EACzC,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,gCAAA,GAAmC,cAAA;EAC7C,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,yBAAA,yBACc,gCAAA,GACtB,gCAAA,IACA,aAAA,CAAc,eAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;KAqBY,yBAAA,GAA4B,OAAA,CAAQ,gBAAA;AAAA,KAEpC,4BAAA,GAA+B,UAAA;EACzC,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,gCAAA,GAAmC,cAAA;EAC7C,YAAA,GAAe,yBAAA;AAAA;AAAA,KAGL,yBAAA,yBACc,gCAAA,GACtB,gCAAA,IACA,aAAA,CAAc,eAAA"}
|
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.399",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to transform project code with Oxc Transformer.",
|
|
6
6
|
"repository": {
|
|
@@ -94,16 +94,16 @@
|
|
|
94
94
|
"powerlines-plugin"
|
|
95
95
|
],
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@stryke/path": "^0.27.
|
|
97
|
+
"@stryke/path": "^0.27.4",
|
|
98
98
|
"defu": "^6.1.6",
|
|
99
99
|
"oxc-transform": "^0.99.0",
|
|
100
|
-
"powerlines": "^0.42.
|
|
100
|
+
"powerlines": "^0.42.31"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
103
|
+
"@powerlines/plugin-plugin": "^0.12.341",
|
|
104
104
|
"@types/node": "^25.5.2"
|
|
105
105
|
},
|
|
106
106
|
"publishConfig": { "access": "public" },
|
|
107
107
|
"types": "./dist/index.d.cts",
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "10fd6444f28886b36493e190e8f09755d7401d6f"
|
|
109
109
|
}
|