@powerlines/plugin-pulumi 0.1.4 → 0.1.8
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-EdAx48bl.d.cts → index-Cb_0-d4Z.d.cts} +16 -3
- package/dist/{index-EdAx48bl.d.ts → index-Cb_0-d4Z.d.ts} +16 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +5 -5
|
@@ -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 PulumiPluginResolvedConfig extends ResolvedConfig {
|
|
|
1447
1456
|
type PulumiPluginContext<TResolvedConfig extends PulumiPluginResolvedConfig = PulumiPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
|
|
1448
1457
|
pulumi: Stack;
|
|
1449
1458
|
};
|
|
1459
|
+
declare type __ΩPulumiPluginOptions = any[];
|
|
1460
|
+
declare type __ΩPulumiPluginUserConfig = any[];
|
|
1461
|
+
declare type __ΩPulumiPluginResolvedConfig = any[];
|
|
1462
|
+
declare type __ΩPulumiPluginContext = any[];
|
|
1450
1463
|
|
|
1451
|
-
export type { PulumiPluginContext as P, PulumiPluginOptions as a, Plugin as b, PulumiPluginUserConfig as c, PulumiPluginResolvedConfig as d };
|
|
1464
|
+
export type { PulumiPluginContext as P, __ΩPulumiPluginOptions as _, PulumiPluginOptions as a, Plugin as b, PulumiPluginUserConfig as c, PulumiPluginResolvedConfig as d, __ΩPulumiPluginUserConfig as e, __ΩPulumiPluginResolvedConfig as f, __ΩPulumiPluginContext as g };
|
|
@@ -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 PulumiPluginResolvedConfig extends ResolvedConfig {
|
|
|
1447
1456
|
type PulumiPluginContext<TResolvedConfig extends PulumiPluginResolvedConfig = PulumiPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
|
|
1448
1457
|
pulumi: Stack;
|
|
1449
1458
|
};
|
|
1459
|
+
declare type __ΩPulumiPluginOptions = any[];
|
|
1460
|
+
declare type __ΩPulumiPluginUserConfig = any[];
|
|
1461
|
+
declare type __ΩPulumiPluginResolvedConfig = any[];
|
|
1462
|
+
declare type __ΩPulumiPluginContext = any[];
|
|
1450
1463
|
|
|
1451
|
-
export type { PulumiPluginContext as P, PulumiPluginOptions as a, Plugin as b, PulumiPluginUserConfig as c, PulumiPluginResolvedConfig as d };
|
|
1464
|
+
export type { PulumiPluginContext as P, __ΩPulumiPluginOptions as _, PulumiPluginOptions as a, Plugin as b, PulumiPluginUserConfig as c, PulumiPluginResolvedConfig as d, __ΩPulumiPluginUserConfig as e, __ΩPulumiPluginResolvedConfig as f, __ΩPulumiPluginContext as g };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PulumiPluginContext, a as PulumiPluginOptions, b as Plugin } from './index-
|
|
2
|
-
export { d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from './index-
|
|
1
|
+
import { P as PulumiPluginContext, a as PulumiPluginOptions, b as Plugin } from './index-Cb_0-d4Z.cjs';
|
|
2
|
+
export { d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from './index-Cb_0-d4Z.cjs';
|
|
3
3
|
import '@pulumi/pulumi/automation';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PulumiPluginContext, a as PulumiPluginOptions, b as Plugin } from './index-
|
|
2
|
-
export { d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from './index-
|
|
1
|
+
import { P as PulumiPluginContext, a as PulumiPluginOptions, b as Plugin } from './index-Cb_0-d4Z.js';
|
|
2
|
+
export { d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from './index-Cb_0-d4Z.js';
|
|
3
3
|
import '@pulumi/pulumi/automation';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from '../index-
|
|
1
|
+
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from '../index-Cb_0-d4Z.cjs';
|
|
2
2
|
import '@pulumi/pulumi/automation';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from '../index-
|
|
1
|
+
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from '../index-Cb_0-d4Z.js';
|
|
2
2
|
import '@pulumi/pulumi/automation';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@pulumi/pulumi/automation';
|
|
2
|
-
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from '../index-
|
|
2
|
+
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from '../index-Cb_0-d4Z.cjs';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@pulumi/pulumi/automation';
|
|
2
|
-
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig } from '../index-
|
|
2
|
+
export { P as PulumiPluginContext, a as PulumiPluginOptions, d as PulumiPluginResolvedConfig, c as PulumiPluginUserConfig, g as __ΩPulumiPluginContext, _ as __ΩPulumiPluginOptions, f as __ΩPulumiPluginResolvedConfig, e as __ΩPulumiPluginUserConfig } from '../index-Cb_0-d4Z.js';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-pulumi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to transform source code to be platform agnostic using pulumi.",
|
|
6
6
|
"repository": {
|
|
@@ -106,13 +106,13 @@
|
|
|
106
106
|
"@stryke/string-format": "^0.12.2",
|
|
107
107
|
"@pulumi/pulumi": "^3.207.0",
|
|
108
108
|
"defu": "^6.1.4",
|
|
109
|
-
"powerlines": "^0.
|
|
109
|
+
"powerlines": "^0.23.3",
|
|
110
110
|
"typescript": "^5.9.3"
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
|
-
"@powerlines/nx": "^0.10.
|
|
114
|
-
"@types/node": "^
|
|
113
|
+
"@powerlines/nx": "^0.10.20",
|
|
114
|
+
"@types/node": "^24.10.1"
|
|
115
115
|
},
|
|
116
116
|
"publishConfig": { "access": "public" },
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
118
118
|
}
|