@tahminator/pipeline 1.0.53 → 1.0.55

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.
@@ -40,7 +40,7 @@ async function main() {
40
40
  message: `
41
41
  ## Test Version Uploaded
42
42
 
43
- Uploaded ${betaVersion} to NPM. View version on NPM registry [here](https://www.npmjs.com/package/@tahminator/pipeline/v/${betaVersion}).
43
+ Uploaded \`${betaVersion}\` to NPM. View version on NPM registry [here](https://www.npmjs.com/package/@tahminator/pipeline/v/${betaVersion}).
44
44
  `,
45
45
  });
46
46
  }
@@ -45,10 +45,14 @@ export class LocalWorkspacePulumiClientStrategy {
45
45
  return line;
46
46
  }
47
47
  const trimmed = line.trimStart();
48
- const symbol = trimmed.startsWith("+-") ? "!"
49
- : trimmed.startsWith("+") ? "+"
50
- : trimmed.startsWith("-") ? "-"
51
- : trimmed.startsWith("~") ? "!"
48
+ const symbol = trimmed.startsWith("+-") ?
49
+ "-" // replace
50
+ : trimmed.startsWith("+") ?
51
+ "+" // create
52
+ : trimmed.startsWith("-") ?
53
+ "-" // delete
54
+ : trimmed.startsWith("~") ?
55
+ "!" // modify
52
56
  : null;
53
57
  if (!symbol) {
54
58
  return line;
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.53",
6
+ "version": "1.0.55",
7
7
  "repository": {
8
8
  "url": "git+https://github.com/tahminator/pipeline.git"
9
9
  },