@powerlines/plugin-satori 0.1.130 → 0.1.131
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.
|
@@ -326,19 +326,17 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
326
326
|
*
|
|
327
327
|
* @param code - The source code of the builtin file
|
|
328
328
|
* @param id - The unique identifier of the builtin file
|
|
329
|
-
* @param path - An optional path to write the builtin file to
|
|
330
329
|
* @param options - Additional options for writing the builtin file
|
|
331
330
|
*/
|
|
332
|
-
emitBuiltin: (code: string, id: string,
|
|
331
|
+
emitBuiltin: (code: string, id: string, options?: EmitOptions) => Promise<void>;
|
|
333
332
|
/**
|
|
334
333
|
* Synchronously resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
335
334
|
*
|
|
336
335
|
* @param code - The source code of the builtin file
|
|
337
336
|
* @param id - The unique identifier of the builtin file
|
|
338
|
-
* @param path - An optional path to write the builtin file to
|
|
339
337
|
* @param options - Additional options for writing the builtin file
|
|
340
338
|
*/
|
|
341
|
-
emitBuiltinSync: (code: string, id: string,
|
|
339
|
+
emitBuiltinSync: (code: string, id: string, options?: EmitOptions) => void;
|
|
342
340
|
/**
|
|
343
341
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
344
342
|
*
|
|
@@ -326,19 +326,17 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
326
326
|
*
|
|
327
327
|
* @param code - The source code of the builtin file
|
|
328
328
|
* @param id - The unique identifier of the builtin file
|
|
329
|
-
* @param path - An optional path to write the builtin file to
|
|
330
329
|
* @param options - Additional options for writing the builtin file
|
|
331
330
|
*/
|
|
332
|
-
emitBuiltin: (code: string, id: string,
|
|
331
|
+
emitBuiltin: (code: string, id: string, options?: EmitOptions) => Promise<void>;
|
|
333
332
|
/**
|
|
334
333
|
* Synchronously resolves a builtin virtual file and writes it to the VFS if it does not already exist
|
|
335
334
|
*
|
|
336
335
|
* @param code - The source code of the builtin file
|
|
337
336
|
* @param id - The unique identifier of the builtin file
|
|
338
|
-
* @param path - An optional path to write the builtin file to
|
|
339
337
|
* @param options - Additional options for writing the builtin file
|
|
340
338
|
*/
|
|
341
|
-
emitBuiltinSync: (code: string, id: string,
|
|
339
|
+
emitBuiltinSync: (code: string, id: string, options?: EmitOptions) => void;
|
|
342
340
|
/**
|
|
343
341
|
* Resolves a entry virtual file and writes it to the VFS if it does not already exist
|
|
344
342
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-satori",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.131",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Satori to generate SVG files from jsx/tsx components.",
|
|
6
6
|
"repository": {
|
|
@@ -131,16 +131,16 @@
|
|
|
131
131
|
"@stryke/types": "^0.10.29",
|
|
132
132
|
"defu": "^6.1.4",
|
|
133
133
|
"jiti": "^2.6.1",
|
|
134
|
-
"powerlines": "^0.37.
|
|
134
|
+
"powerlines": "^0.37.6",
|
|
135
135
|
"satori": "^0.18.3"
|
|
136
136
|
},
|
|
137
137
|
"devDependencies": {
|
|
138
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
138
|
+
"@powerlines/plugin-plugin": "^0.12.84",
|
|
139
139
|
"@storm-software/config": "^1.134.75",
|
|
140
140
|
"@types/node": "^24.10.4",
|
|
141
141
|
"@types/react": "^19.2.7",
|
|
142
142
|
"@types/react-dom": "^19.2.3"
|
|
143
143
|
},
|
|
144
144
|
"publishConfig": { "access": "public" },
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "4f4e84adc19aadfea6a385968266306934c1ee08"
|
|
146
146
|
}
|