@backstage/codemods 0.1.42 → 0.1.43

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/codemods
2
2
 
3
+ ## 0.1.43
4
+
5
+ ### Patch Changes
6
+
7
+ - 02f1316e57: Moved `commander` to being a regular dependency.
8
+ - Updated dependencies
9
+ - @backstage/cli-common@0.1.11
10
+
11
+ ## 0.1.43-next.0
12
+
13
+ ### Patch Changes
14
+
15
+ - 02f1316e57: Moved `commander` to being a regular dependency.
16
+ - Updated dependencies
17
+ - @backstage/cli-common@0.1.11
18
+
3
19
  ## 0.1.42
4
20
 
5
21
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -113,7 +113,7 @@ function createCodemodAction(name) {
113
113
  };
114
114
  }
115
115
 
116
- var version = "0.1.42";
116
+ var version = "0.1.43";
117
117
 
118
118
  async function main(argv) {
119
119
  commander.program.name("backstage-codemods").version(version);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/codemods",
3
3
  "description": "A collection of codemods for Backstage projects",
4
- "version": "0.1.42",
4
+ "version": "0.1.43",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "main": "dist/index.cjs.js"
@@ -35,14 +35,14 @@
35
35
  "dependencies": {
36
36
  "@backstage/cli-common": "^0.1.11",
37
37
  "chalk": "^4.0.0",
38
+ "commander": "^9.1.0",
38
39
  "jscodeshift": "^0.14.0",
39
40
  "jscodeshift-add-imports": "^1.0.10"
40
41
  },
41
42
  "devDependencies": {
42
- "@backstage/cli": "^0.22.0",
43
+ "@backstage/cli": "^0.22.2",
43
44
  "@types/jscodeshift": "^0.11.0",
44
45
  "@types/node": "^16.11.26",
45
- "commander": "^9.1.0",
46
46
  "ts-node": "^10.0.0"
47
47
  },
48
48
  "nodemonConfig": {