@backstage/codemods 0.1.32 → 0.1.35

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,37 @@
1
1
  # @backstage/codemods
2
2
 
3
+ ## 0.1.35
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/cli-common@0.1.8
9
+
10
+ ## 0.1.34
11
+
12
+ ### Patch Changes
13
+
14
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
15
+ - Updated dependencies
16
+ - @backstage/core-app-api@0.5.3
17
+ - @backstage/core-components@0.8.9
18
+ - @backstage/core-plugin-api@0.6.1
19
+ - @backstage/cli-common@0.1.7
20
+
21
+ ## 0.1.33
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/core-components@0.8.8
27
+
28
+ ## 0.1.33-next.0
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/core-components@0.8.8-next.0
34
+
3
35
  ## 0.1.32
4
36
 
5
37
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -1994,7 +1994,7 @@ function createCodemodAction(name) {
1994
1994
  };
1995
1995
  }
1996
1996
 
1997
- var version = "0.1.32";
1997
+ var version = "0.1.35";
1998
1998
 
1999
1999
  async function main(argv) {
2000
2000
  program.name("backstage-codemods").version(version);
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@backstage/codemods",
3
3
  "description": "A collection of codemods for Backstage projects",
4
- "version": "0.1.32",
4
+ "version": "0.1.35",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public",
8
8
  "main": "dist/index.cjs.js"
9
9
  },
10
+ "backstage": {
11
+ "role": "cli"
12
+ },
10
13
  "homepage": "https://backstage.io",
11
14
  "repository": {
12
15
  "type": "git",
@@ -20,18 +23,18 @@
20
23
  "main": "dist/index.cjs.js",
21
24
  "scripts": {
22
25
  "start": "nodemon --",
23
- "build": "backstage-cli build --outputs cjs",
24
- "lint": "backstage-cli lint",
25
- "test": "backstage-cli test",
26
+ "build": "backstage-cli package build",
27
+ "lint": "backstage-cli package lint",
28
+ "test": "backstage-cli package test",
26
29
  "prepack": "backstage-cli prepack",
27
30
  "postpack": "backstage-cli postpack",
28
- "clean": "backstage-cli clean"
31
+ "clean": "backstage-cli package clean"
29
32
  },
30
33
  "bin": {
31
34
  "backstage-codemods": "bin/backstage-codemods"
32
35
  },
33
36
  "dependencies": {
34
- "@backstage/cli-common": "0.1.6",
37
+ "@backstage/cli-common": "0.1.8",
35
38
  "@backstage/core-app-api": "*",
36
39
  "@backstage/core-components": "*",
37
40
  "@backstage/core-plugin-api": "*",
@@ -55,5 +58,5 @@
55
58
  "dist",
56
59
  "transforms"
57
60
  ],
58
- "gitHead": "f944a625c4a8ec7f6a6237502691da9209ce6b14"
61
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
59
62
  }