@backstage-community/plugin-cost-insights-common 0.4.0 → 0.5.0
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 +12 -0
- package/README.md +1 -1
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-cost-insights-common
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 74ab831: Backstage version bump to v1.40.2
|
|
8
|
+
|
|
9
|
+
## 0.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6c0f6ee: Update README links to point to community-plugins repository.
|
|
14
|
+
|
|
3
15
|
## 0.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -4,5 +4,5 @@ Shared isomorphic code for the cost-insights plugin.
|
|
|
4
4
|
|
|
5
5
|
## Links
|
|
6
6
|
|
|
7
|
-
- [Frontend part of the plugin](https://github.com/backstage/
|
|
7
|
+
- [Frontend part of the plugin](https://github.com/backstage/community-plugins/tree/main/workspaces/cost-insights/plugins/cost-insights)
|
|
8
8
|
- [The Backstage homepage](https://backstage.io)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cost-insights-common",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Common functionalities for the cost-insights plugin",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library",
|
|
@@ -41,7 +41,14 @@
|
|
|
41
41
|
"test": "backstage-cli package test"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "^0.
|
|
44
|
+
"@backstage/cli": "^0.33.0"
|
|
45
|
+
},
|
|
46
|
+
"typesVersions": {
|
|
47
|
+
"*": {
|
|
48
|
+
"package.json": [
|
|
49
|
+
"package.json"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
45
52
|
},
|
|
46
53
|
"module": "dist/index.esm.js"
|
|
47
54
|
}
|