Merge pull request #14654 from acierto/cost-insight-trending-line

Making a possibility to hide a trending line in a cost insights plugin
This commit is contained in:
Johan Haals
2022-11-23 13:46:04 +01:00
committed by GitHub
15 changed files with 149 additions and 46 deletions
+5 -3
View File
@@ -5,7 +5,8 @@
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"alphaTypes": "dist/index.alpha.d.ts"
},
"backstage": {
"role": "web-library"
@@ -23,7 +24,7 @@
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"build": "backstage-cli package build",
"build": "backstage-cli package build --experimental-type-build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli package prepack",
@@ -60,6 +61,7 @@
"msw": "^0.49.0"
},
"files": [
"dist"
"dist",
"alpha"
]
}