@tahminator/pipeline 1.0.46 → 1.0.48
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/env/client.js
CHANGED
|
@@ -28,9 +28,11 @@ export class EnvClient {
|
|
|
28
28
|
console.log(`::add-mask::${value}`);
|
|
29
29
|
}
|
|
30
30
|
else {
|
|
31
|
-
|
|
31
|
+
for (const line of lines) {
|
|
32
|
+
if (!line.trim().length)
|
|
33
|
+
continue;
|
|
32
34
|
console.log(`::add-mask::${line}`);
|
|
33
|
-
}
|
|
35
|
+
}
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
38
|
return Object.fromEntries(envs);
|
package/dist/pulumi/client.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export declare class PulumiClient {
|
|
|
9
9
|
private constructor();
|
|
10
10
|
static create(args: PulumiClientCreateArgs): Promise<PulumiClient>;
|
|
11
11
|
up(): Promise<UpResult>;
|
|
12
|
-
preview(
|
|
12
|
+
preview(opts: {
|
|
13
|
+
diff: boolean;
|
|
14
|
+
}): Promise<PreviewResult>;
|
|
13
15
|
static parseChangeSumaryToPrettyTable(changeSummary: OpMap): string;
|
|
14
16
|
}
|
package/dist/pulumi/client.js
CHANGED
|
@@ -34,8 +34,8 @@ export class PulumiClient {
|
|
|
34
34
|
async up() {
|
|
35
35
|
return this.strategy.up();
|
|
36
36
|
}
|
|
37
|
-
async preview() {
|
|
38
|
-
return this.strategy.preview();
|
|
37
|
+
async preview(opts) {
|
|
38
|
+
return this.strategy.preview(opts);
|
|
39
39
|
}
|
|
40
40
|
static parseChangeSumaryToPrettyTable(changeSummary) {
|
|
41
41
|
const entries = Object.entries(changeSummary).filter(([_, count]) => count > 0);
|
|
@@ -6,5 +6,7 @@ export declare class AzurePulumiClientStrategy implements IPulumiClientStrategy
|
|
|
6
6
|
private constructor();
|
|
7
7
|
static create(args: PulumiClientAzureStrategyArgs): Promise<AzurePulumiClientStrategy>;
|
|
8
8
|
up(): Promise<UpResult>;
|
|
9
|
-
preview(
|
|
9
|
+
preview({ diff }: {
|
|
10
|
+
diff: boolean;
|
|
11
|
+
}): Promise<PreviewResult>;
|
|
10
12
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"type": "module",
|
|
4
4
|
"author": "Tahmid Ahmed",
|
|
5
5
|
"description": "A collection of Bun shell scripts that can be re-used in various CICD pipelines.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.48",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "git+https://github.com/tahminator/pipeline.git"
|
|
9
9
|
},
|