We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2087530 commit ffd249dCopy full SHA for ffd249d
plugins/feedback-backend/package.json
@@ -12,6 +12,21 @@
12
"backstage": {
13
"role": "backend-plugin"
14
},
15
+ "exports": {
16
+ ".": "./src/index.ts",
17
+ "./alpha": "./src/alpha.ts",
18
+ "./package.json": "./package.json"
19
+ },
20
+ "typesVersions": {
21
+ "*": {
22
+ "alpha": [
23
+ "src/alpha.ts"
24
+ ],
25
+ "package.json": [
26
+ "package.json"
27
+ ]
28
+ }
29
30
"scripts": {
31
"start": "backstage-cli package start",
32
"build": "backstage-cli package build",
plugins/feedback-backend/src/alpha.ts
@@ -0,0 +1 @@
1
+export { feedbackPlugin as default } from './plugin';
0 commit comments