@tahminator/pipeline 1.0.54 → 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.
@@ -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.54",
6
+ "version": "1.0.55",
7
7
  "repository": {
8
8
  "url": "git+https://github.com/tahminator/pipeline.git"
9
9
  },