@pagopa/dx-cli 0.15.3 → 0.15.5

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.
@@ -125,14 +125,14 @@ async function updateDXWorkflows() {
125
125
  // Update the js_code_review workflow to use the latest commit sha
126
126
  const results = await replaceInFile({
127
127
  allowEmptyPaths: true,
128
- files: [".github/workflows/*.yaml"],
128
+ files: [".github/workflows/*.yaml", ".github/workflows/*.yml"],
129
129
  processor: updateJSCodeReviewJob(sha),
130
130
  });
131
131
  const ignore = results.filter((r) => r.hasChanged).map((r) => r.file);
132
132
  // Update the legacy deployment workflow to release-azure-appsvc-v1.yaml
133
133
  await replaceInFile({
134
134
  allowEmptyPaths: true,
135
- files: [".github/workflows/*.yaml"],
135
+ files: [".github/workflows/*.yaml", ".github/workflows/*.yml"],
136
136
  ignore,
137
137
  processor: migrateWorkflow(sha),
138
138
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagopa/dx-cli",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
4
4
  "type": "module",
5
5
  "description": "A CLI useful to manage DX tools.",
6
6
  "repository": {
@@ -38,6 +38,7 @@
38
38
  "glob": "^11.1.0",
39
39
  "inquirer": "^9.3.8",
40
40
  "neverthrow": "^8.2.0",
41
+ "node-plop": "^0.32.3",
41
42
  "octokit": "^5.0.5",
42
43
  "ora": "^9.0.0",
43
44
  "replace-in-file": "^8.4.0",
@@ -54,7 +55,6 @@
54
55
  "@vitest/coverage-v8": "^3.2.4",
55
56
  "eslint": "^9.39.2",
56
57
  "memfs": "^4.51.1",
57
- "node-plop": "^0.32.3",
58
58
  "plop": "^4.0.4",
59
59
  "prettier": "3.6.2",
60
60
  "typescript": "~5.8.3",