@backstage/dev-utils 1.0.12 → 1.0.13-next.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/README.md +1 -1
  3. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/dev-utils
2
2
 
3
+ ## 1.0.13-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 482dae5de1c: Updated link to docs.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.12.5-next.1
10
+ - @backstage/core-app-api@1.5.1-next.1
11
+ - @backstage/core-plugin-api@1.4.1-next.1
12
+ - @backstage/integration-react@1.1.11-next.1
13
+ - @backstage/test-utils@1.2.6-next.1
14
+ - @backstage/theme@0.2.18-next.0
15
+ - @backstage/plugin-catalog-react@1.4.0-next.1
16
+ - @backstage/app-defaults@1.2.1-next.1
17
+ - @backstage/catalog-model@1.2.1-next.1
18
+
19
+ ## 1.0.13-next.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @backstage/plugin-catalog-react@1.4.0-next.0
25
+ - @backstage/core-plugin-api@1.4.1-next.0
26
+ - @backstage/catalog-model@1.2.1-next.0
27
+ - @backstage/test-utils@1.2.6-next.0
28
+ - @backstage/app-defaults@1.2.1-next.0
29
+ - @backstage/core-app-api@1.5.1-next.0
30
+ - @backstage/core-components@0.12.5-next.0
31
+ - @backstage/integration-react@1.1.11-next.0
32
+ - @backstage/theme@0.2.17
33
+
3
34
  ## 1.0.12
4
35
 
5
36
  ### Patch Changes
package/README.md CHANGED
@@ -16,4 +16,4 @@ yarn add -D @backstage/dev-utils
16
16
  ## Documentation
17
17
 
18
18
  - [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
19
- - [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
19
+ - [Backstage Documentation](https://backstage.io/docs)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/dev-utils",
3
3
  "description": "Utilities for developing Backstage plugins.",
4
- "version": "1.0.12",
4
+ "version": "1.0.13-next.1",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "main": "dist/index.esm.js",
@@ -32,15 +32,15 @@
32
32
  "start": "backstage-cli package start"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/app-defaults": "^1.2.0",
36
- "@backstage/catalog-model": "^1.2.0",
37
- "@backstage/core-app-api": "^1.5.0",
38
- "@backstage/core-components": "^0.12.4",
39
- "@backstage/core-plugin-api": "^1.4.0",
40
- "@backstage/integration-react": "^1.1.10",
41
- "@backstage/plugin-catalog-react": "^1.3.0",
42
- "@backstage/test-utils": "^1.2.5",
43
- "@backstage/theme": "^0.2.17",
35
+ "@backstage/app-defaults": "^1.2.1-next.1",
36
+ "@backstage/catalog-model": "^1.2.1-next.1",
37
+ "@backstage/core-app-api": "^1.5.1-next.1",
38
+ "@backstage/core-components": "^0.12.5-next.1",
39
+ "@backstage/core-plugin-api": "^1.4.1-next.1",
40
+ "@backstage/integration-react": "^1.1.11-next.1",
41
+ "@backstage/plugin-catalog-react": "^1.4.0-next.1",
42
+ "@backstage/test-utils": "^1.2.6-next.1",
43
+ "@backstage/theme": "^0.2.18-next.0",
44
44
  "@material-ui/core": "^4.12.2",
45
45
  "@material-ui/icons": "^4.9.1",
46
46
  "@testing-library/jest-dom": "^5.10.1",
@@ -56,10 +56,11 @@
56
56
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@backstage/cli": "^0.22.2",
59
+ "@backstage/cli": "^0.22.4-next.1",
60
60
  "@types/node": "^16.0.0"
61
61
  },
62
62
  "files": [
63
63
  "dist"
64
- ]
64
+ ],
65
+ "module": "./dist/index.esm.js"
65
66
  }