Merge pull request #20015 from backstage/jhaals/techRadar

tech-radar: Add alpha exports for page and api extensions
This commit is contained in:
Johan Haals
2023-09-26 10:16:53 +02:00
committed by GitHub
6 changed files with 111 additions and 4 deletions
+17 -3
View File
@@ -6,9 +6,7 @@
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
"access": "public"
},
"backstage": {
"role": "frontend-plugin"
@@ -22,6 +20,21 @@
"keywords": [
"backstage"
],
"exports": {
".": "./src/index.ts",
"./alpha": "./src/alpha.tsx",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"alpha": [
"src/alpha.tsx"
],
"package.json": [
"package.json"
]
}
},
"sideEffects": false,
"scripts": {
"build": "backstage-cli package build",
@@ -35,6 +48,7 @@
"dependencies": {
"@backstage/core-components": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/frontend-plugin-api": "workspace:^",
"@backstage/theme": "workspace:^",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",