@powerlines/plugin-satori 0.1.387 → 0.1.388
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 +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/types/index.d.cts +3 -3
- package/dist/types/index.d.mts +3 -3
- package/dist/types/module.d.cts +1 -2
- package/dist/types/module.d.cts.map +1 -1
- package/dist/types/module.d.mts +1 -2
- package/dist/types/module.d.mts.map +1 -1
- 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 +11 -11
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
2
|
-
import { SatoriComponentModule
|
|
1
|
+
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig } from "./types/plugin.cjs";
|
|
2
|
+
import { SatoriComponentModule } from "./types/module.cjs";
|
|
3
3
|
import { Plugin } from "powerlines";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
@@ -16,5 +16,5 @@ declare module "powerlines" {
|
|
|
16
16
|
*/
|
|
17
17
|
declare const plugin: <TContext extends SatoriPluginContext = SatoriPluginContext>(options: SatoriPluginOptions) => Plugin<TContext>;
|
|
18
18
|
//#endregion
|
|
19
|
-
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig,
|
|
19
|
+
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig, plugin as default, plugin };
|
|
20
20
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
2
|
-
import { SatoriComponentModule
|
|
1
|
+
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig } from "./types/plugin.mjs";
|
|
2
|
+
import { SatoriComponentModule } from "./types/module.mjs";
|
|
3
3
|
import { Plugin } from "powerlines";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
@@ -16,5 +16,5 @@ declare module "powerlines" {
|
|
|
16
16
|
*/
|
|
17
17
|
declare const plugin: <TContext extends SatoriPluginContext = SatoriPluginContext>(options: SatoriPluginOptions) => Plugin<TContext>;
|
|
18
18
|
//#endregion
|
|
19
|
-
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig,
|
|
19
|
+
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig, plugin as default, plugin };
|
|
20
20
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
2
|
-
import { SatoriComponentModule
|
|
3
|
-
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
1
|
+
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig } from "./plugin.cjs";
|
|
2
|
+
import { SatoriComponentModule } from "./module.cjs";
|
|
3
|
+
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
2
|
-
import { SatoriComponentModule
|
|
3
|
-
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
1
|
+
import { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig } from "./plugin.mjs";
|
|
2
|
+
import { SatoriComponentModule } from "./module.mjs";
|
|
3
|
+
export { SatoriComponentModule, SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig };
|
package/dist/types/module.d.cts
CHANGED
|
@@ -6,7 +6,6 @@ interface SatoriComponentModule {
|
|
|
6
6
|
default: ReactNode;
|
|
7
7
|
options?: SatoriOptions;
|
|
8
8
|
}
|
|
9
|
-
declare type __ΩSatoriComponentModule = any[];
|
|
10
9
|
//#endregion
|
|
11
|
-
export { SatoriComponentModule
|
|
10
|
+
export { SatoriComponentModule };
|
|
12
11
|
//# sourceMappingURL=module.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.cts","names":[],"sources":["../../src/types/module.ts"],"mappings":";;;;UAqBiB,qBAAA;EACf,OAAA,EAAS,SAAA;EACT,OAAA,GAAU,aAAA;AAAA
|
|
1
|
+
{"version":3,"file":"module.d.cts","names":[],"sources":["../../src/types/module.ts"],"mappings":";;;;UAqBiB,qBAAA;EACf,OAAA,EAAS,SAAA;EACT,OAAA,GAAU,aAAA;AAAA"}
|
package/dist/types/module.d.mts
CHANGED
|
@@ -6,7 +6,6 @@ interface SatoriComponentModule {
|
|
|
6
6
|
default: ReactNode;
|
|
7
7
|
options?: SatoriOptions;
|
|
8
8
|
}
|
|
9
|
-
declare type __ΩSatoriComponentModule = any[];
|
|
10
9
|
//#endregion
|
|
11
|
-
export { SatoriComponentModule
|
|
10
|
+
export { SatoriComponentModule };
|
|
12
11
|
//# sourceMappingURL=module.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.mts","names":[],"sources":["../../src/types/module.ts"],"mappings":";;;;UAqBiB,qBAAA;EACf,OAAA,EAAS,SAAA;EACT,OAAA,GAAU,aAAA;AAAA
|
|
1
|
+
{"version":3,"file":"module.d.mts","names":[],"sources":["../../src/types/module.ts"],"mappings":";;;;UAqBiB,qBAAA;EACf,OAAA,EAAS,SAAA;EACT,OAAA,GAAU,aAAA;AAAA"}
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -37,10 +37,6 @@ interface SatoriPluginResolvedConfig extends ResolvedConfig {
|
|
|
37
37
|
};
|
|
38
38
|
}
|
|
39
39
|
type SatoriPluginContext<TResolvedConfig extends SatoriPluginResolvedConfig = SatoriPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
40
|
-
declare type __ΩSatoriPluginOptions = any[];
|
|
41
|
-
declare type __ΩSatoriPluginUserConfig = any[];
|
|
42
|
-
declare type __ΩSatoriPluginResolvedConfig = any[];
|
|
43
|
-
declare type __ΩSatoriPluginContext = any[];
|
|
44
40
|
//#endregion
|
|
45
|
-
export { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
41
|
+
export { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig };
|
|
46
42
|
//# sourceMappingURL=plugin.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UAqBiB,mBAAA;;AAAjB;;EAIE,IAAA;EAgBwB;;;;;;EARxB,UAAA;EAQsC;AAGxC;;;;;EAHE,cAAA,GAAiB,OAAA,CAAQ,aAAA;AAAA;AAAA,UAGV,sBAAA,SAA+B,UAAA;EAC9C,MAAA,GAAS,IAAA,CAAK,mBAAA,sBACZ,QAAA,CAAS,IAAA,CAAK,mBAAA;AAAA;AAAA,UAGD,0BAAA,SAAmC,cAAA;EAClD,MAAA,EAAQ,IAAA,CAAK,mBAAA,sBACX,QAAA,CAAS,IAAA,CAAK,mBAAA;IANhB;;;;;;IAaI,MAAA;EAAA;AAAA;AAAA,KAIM,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,aAAA,CAAc,eAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UAqBiB,mBAAA;;AAAjB;;EAIE,IAAA;EAgBwB;;;;;;EARxB,UAAA;EAQsC;AAGxC;;;;;EAHE,cAAA,GAAiB,OAAA,CAAQ,aAAA;AAAA;AAAA,UAGV,sBAAA,SAA+B,UAAA;EAC9C,MAAA,GAAS,IAAA,CAAK,mBAAA,sBACZ,QAAA,CAAS,IAAA,CAAK,mBAAA;AAAA;AAAA,UAGD,0BAAA,SAAmC,cAAA;EAClD,MAAA,EAAQ,IAAA,CAAK,mBAAA,sBACX,QAAA,CAAS,IAAA,CAAK,mBAAA;IANhB;;;;;;IAaI,MAAA;EAAA;AAAA;AAAA,KAIM,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,aAAA,CAAc,eAAA"}
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -37,10 +37,6 @@ interface SatoriPluginResolvedConfig extends ResolvedConfig {
|
|
|
37
37
|
};
|
|
38
38
|
}
|
|
39
39
|
type SatoriPluginContext<TResolvedConfig extends SatoriPluginResolvedConfig = SatoriPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
40
|
-
declare type __ΩSatoriPluginOptions = any[];
|
|
41
|
-
declare type __ΩSatoriPluginUserConfig = any[];
|
|
42
|
-
declare type __ΩSatoriPluginResolvedConfig = any[];
|
|
43
|
-
declare type __ΩSatoriPluginContext = any[];
|
|
44
40
|
//#endregion
|
|
45
|
-
export { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig
|
|
41
|
+
export { SatoriPluginContext, SatoriPluginOptions, SatoriPluginResolvedConfig, SatoriPluginUserConfig };
|
|
46
42
|
//# sourceMappingURL=plugin.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UAqBiB,mBAAA;;AAAjB;;EAIE,IAAA;EAgBwB;;;;;;EARxB,UAAA;EAQsC;AAGxC;;;;;EAHE,cAAA,GAAiB,OAAA,CAAQ,aAAA;AAAA;AAAA,UAGV,sBAAA,SAA+B,UAAA;EAC9C,MAAA,GAAS,IAAA,CAAK,mBAAA,sBACZ,QAAA,CAAS,IAAA,CAAK,mBAAA;AAAA;AAAA,UAGD,0BAAA,SAAmC,cAAA;EAClD,MAAA,EAAQ,IAAA,CAAK,mBAAA,sBACX,QAAA,CAAS,IAAA,CAAK,mBAAA;IANhB;;;;;;IAaI,MAAA;EAAA;AAAA;AAAA,KAIM,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,aAAA,CAAc,eAAA
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UAqBiB,mBAAA;;AAAjB;;EAIE,IAAA;EAgBwB;;;;;;EARxB,UAAA;EAQsC;AAGxC;;;;;EAHE,cAAA,GAAiB,OAAA,CAAQ,aAAA;AAAA;AAAA,UAGV,sBAAA,SAA+B,UAAA;EAC9C,MAAA,GAAS,IAAA,CAAK,mBAAA,sBACZ,QAAA,CAAS,IAAA,CAAK,mBAAA;AAAA;AAAA,UAGD,0BAAA,SAAmC,cAAA;EAClD,MAAA,EAAQ,IAAA,CAAK,mBAAA,sBACX,QAAA,CAAS,IAAA,CAAK,mBAAA;IANhB;;;;;;IAaI,MAAA;EAAA;AAAA;AAAA,KAIM,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,aAAA,CAAc,eAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-satori",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.388",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Satori to generate SVG files from jsx/tsx components.",
|
|
6
6
|
"repository": {
|
|
@@ -108,20 +108,20 @@
|
|
|
108
108
|
"react-dom": { "optional": true }
|
|
109
109
|
},
|
|
110
110
|
"dependencies": {
|
|
111
|
-
"@stryke/convert": "^0.6.
|
|
112
|
-
"@stryke/fs": "^0.33.
|
|
113
|
-
"@stryke/helpers": "^0.10.
|
|
114
|
-
"@stryke/json": "^0.14.
|
|
115
|
-
"@stryke/path": "^0.27.
|
|
116
|
-
"@stryke/type-checks": "^0.6.
|
|
117
|
-
"@stryke/types": "^0.11.
|
|
111
|
+
"@stryke/convert": "^0.6.58",
|
|
112
|
+
"@stryke/fs": "^0.33.66",
|
|
113
|
+
"@stryke/helpers": "^0.10.8",
|
|
114
|
+
"@stryke/json": "^0.14.12",
|
|
115
|
+
"@stryke/path": "^0.27.4",
|
|
116
|
+
"@stryke/type-checks": "^0.6.1",
|
|
117
|
+
"@stryke/types": "^0.11.3",
|
|
118
118
|
"defu": "^6.1.6",
|
|
119
119
|
"jiti": "^2.6.1",
|
|
120
|
-
"powerlines": "^0.42.
|
|
120
|
+
"powerlines": "^0.42.30",
|
|
121
121
|
"satori": "^0.18.4"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
124
|
+
"@powerlines/plugin-plugin": "^0.12.340",
|
|
125
125
|
"@storm-software/config": "^1.137.26",
|
|
126
126
|
"@types/node": "^25.5.2",
|
|
127
127
|
"@types/react": "^19.2.14",
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
},
|
|
130
130
|
"publishConfig": { "access": "public" },
|
|
131
131
|
"types": "./dist/index.d.cts",
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "454fceda20c6f4dda53f6bc5901e5768ac253365"
|
|
133
133
|
}
|