@powerlines/plugin-satori 0.1.15 → 0.1.19
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.ts +3 -3
- package/dist/{plugin-BxIZadkS.d.cts → plugin-CC9Ug1gr.d.cts} +16 -3
- package/dist/{plugin-BxIZadkS.d.ts → plugin-CC9Ug1gr.d.ts} +16 -3
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/module.d.cts +2 -1
- package/dist/types/module.d.ts +2 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { c as SatoriPluginContext, S as SatoriPluginOptions, P as Plugin } from './plugin-
|
|
2
|
-
export { b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from './plugin-
|
|
3
|
-
export { SatoriComponentModule } from './types/module.cjs';
|
|
1
|
+
import { c as SatoriPluginContext, S as SatoriPluginOptions, P as Plugin } from './plugin-CC9Ug1gr.cjs';
|
|
2
|
+
export { b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from './plugin-CC9Ug1gr.cjs';
|
|
3
|
+
export { SatoriComponentModule, __ΩSatoriComponentModule } from './types/module.cjs';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
6
6
|
import '@storm-software/config/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { c as SatoriPluginContext, S as SatoriPluginOptions, P as Plugin } from './plugin-
|
|
2
|
-
export { b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from './plugin-
|
|
3
|
-
export { SatoriComponentModule } from './types/module.js';
|
|
1
|
+
import { c as SatoriPluginContext, S as SatoriPluginOptions, P as Plugin } from './plugin-CC9Ug1gr.js';
|
|
2
|
+
export { b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from './plugin-CC9Ug1gr.js';
|
|
3
|
+
export { SatoriComponentModule, __ΩSatoriComponentModule } from './types/module.js';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
6
6
|
import '@storm-software/config/types';
|
|
@@ -218,8 +218,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
218
218
|
tsconfigFilePath: string;
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
declare const __VFS_PATCH__
|
|
222
|
-
declare const __VFS_REVERT__
|
|
221
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
222
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
223
223
|
type OutputModeType = "fs" | "virtual";
|
|
224
224
|
interface VirtualFile {
|
|
225
225
|
/**
|
|
@@ -628,6 +628,15 @@ interface OutputConfig {
|
|
|
628
628
|
* @defaultValue "dist/\{projectRoot\}"
|
|
629
629
|
*/
|
|
630
630
|
outputPath?: string;
|
|
631
|
+
/**
|
|
632
|
+
* The output directory path for the project build.
|
|
633
|
+
*
|
|
634
|
+
* @remarks
|
|
635
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
636
|
+
*
|
|
637
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
638
|
+
*/
|
|
639
|
+
distPath?: string;
|
|
631
640
|
/**
|
|
632
641
|
* The format of the output files
|
|
633
642
|
*
|
|
@@ -1447,5 +1456,9 @@ interface SatoriPluginResolvedConfig extends ResolvedConfig {
|
|
|
1447
1456
|
};
|
|
1448
1457
|
}
|
|
1449
1458
|
type SatoriPluginContext<TResolvedConfig extends SatoriPluginResolvedConfig = SatoriPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1459
|
+
declare type __ΩSatoriPluginOptions = any[];
|
|
1460
|
+
declare type __ΩSatoriPluginUserConfig = any[];
|
|
1461
|
+
declare type __ΩSatoriPluginResolvedConfig = any[];
|
|
1462
|
+
declare type __ΩSatoriPluginContext = any[];
|
|
1450
1463
|
|
|
1451
|
-
export type { Plugin as P, SatoriPluginOptions as S, SatoriPluginUserConfig as a, SatoriPluginResolvedConfig as b, SatoriPluginContext as c };
|
|
1464
|
+
export type { Plugin as P, SatoriPluginOptions as S, __ΩSatoriPluginOptions as _, SatoriPluginUserConfig as a, SatoriPluginResolvedConfig as b, SatoriPluginContext as c, __ΩSatoriPluginUserConfig as d, __ΩSatoriPluginResolvedConfig as e, __ΩSatoriPluginContext as f };
|
|
@@ -218,8 +218,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
218
218
|
tsconfigFilePath: string;
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
declare const __VFS_PATCH__
|
|
222
|
-
declare const __VFS_REVERT__
|
|
221
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
222
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
223
223
|
type OutputModeType = "fs" | "virtual";
|
|
224
224
|
interface VirtualFile {
|
|
225
225
|
/**
|
|
@@ -628,6 +628,15 @@ interface OutputConfig {
|
|
|
628
628
|
* @defaultValue "dist/\{projectRoot\}"
|
|
629
629
|
*/
|
|
630
630
|
outputPath?: string;
|
|
631
|
+
/**
|
|
632
|
+
* The output directory path for the project build.
|
|
633
|
+
*
|
|
634
|
+
* @remarks
|
|
635
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
636
|
+
*
|
|
637
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
638
|
+
*/
|
|
639
|
+
distPath?: string;
|
|
631
640
|
/**
|
|
632
641
|
* The format of the output files
|
|
633
642
|
*
|
|
@@ -1447,5 +1456,9 @@ interface SatoriPluginResolvedConfig extends ResolvedConfig {
|
|
|
1447
1456
|
};
|
|
1448
1457
|
}
|
|
1449
1458
|
type SatoriPluginContext<TResolvedConfig extends SatoriPluginResolvedConfig = SatoriPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1459
|
+
declare type __ΩSatoriPluginOptions = any[];
|
|
1460
|
+
declare type __ΩSatoriPluginUserConfig = any[];
|
|
1461
|
+
declare type __ΩSatoriPluginResolvedConfig = any[];
|
|
1462
|
+
declare type __ΩSatoriPluginContext = any[];
|
|
1450
1463
|
|
|
1451
|
-
export type { Plugin as P, SatoriPluginOptions as S, SatoriPluginUserConfig as a, SatoriPluginResolvedConfig as b, SatoriPluginContext as c };
|
|
1464
|
+
export type { Plugin as P, SatoriPluginOptions as S, __ΩSatoriPluginOptions as _, SatoriPluginUserConfig as a, SatoriPluginResolvedConfig as b, SatoriPluginContext as c, __ΩSatoriPluginUserConfig as d, __ΩSatoriPluginResolvedConfig as e, __ΩSatoriPluginContext as f };
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { SatoriComponentModule } from './module.cjs';
|
|
2
|
-
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from '../plugin-
|
|
1
|
+
export { SatoriComponentModule, __ΩSatoriComponentModule } from './module.cjs';
|
|
2
|
+
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from '../plugin-CC9Ug1gr.cjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'satori';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { SatoriComponentModule } from './module.js';
|
|
2
|
-
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from '../plugin-
|
|
1
|
+
export { SatoriComponentModule, __ΩSatoriComponentModule } from './module.js';
|
|
2
|
+
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from '../plugin-CC9Ug1gr.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'satori';
|
|
5
5
|
import '@storm-software/build-tools/types';
|
package/dist/types/module.d.cts
CHANGED
package/dist/types/module.d.ts
CHANGED
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from '../plugin-
|
|
1
|
+
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from '../plugin-CC9Ug1gr.cjs';
|
|
2
2
|
import 'satori';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig } from '../plugin-
|
|
1
|
+
export { c as SatoriPluginContext, S as SatoriPluginOptions, b as SatoriPluginResolvedConfig, a as SatoriPluginUserConfig, f as __ΩSatoriPluginContext, _ as __ΩSatoriPluginOptions, e as __ΩSatoriPluginResolvedConfig, d as __ΩSatoriPluginUserConfig } from '../plugin-CC9Ug1gr.js';
|
|
2
2
|
import 'satori';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-satori",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Satori to generate SVG files from jsx/tsx components.",
|
|
6
6
|
"repository": {
|
|
@@ -113,17 +113,17 @@
|
|
|
113
113
|
"@stryke/types": "^0.10.2",
|
|
114
114
|
"defu": "^6.1.4",
|
|
115
115
|
"jiti": "^2.6.1",
|
|
116
|
-
"powerlines": "^0.
|
|
116
|
+
"powerlines": "^0.23.3",
|
|
117
117
|
"satori": "^0.18.3"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@powerlines/nx": "^0.10.
|
|
121
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
122
|
-
"@storm-software/config": "^1.134.
|
|
123
|
-
"@types/node": "^
|
|
120
|
+
"@powerlines/nx": "^0.10.20",
|
|
121
|
+
"@powerlines/plugin-plugin": "^0.11.28",
|
|
122
|
+
"@storm-software/config": "^1.134.42",
|
|
123
|
+
"@types/node": "^24.10.1",
|
|
124
124
|
"@types/react": "^19.2.6",
|
|
125
125
|
"@types/react-dom": "^19.2.3"
|
|
126
126
|
},
|
|
127
127
|
"publishConfig": { "access": "public" },
|
|
128
|
-
"gitHead": "
|
|
128
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
129
129
|
}
|