Merge pull request #12235 from backstage/emmaindal/stack-overflow-plugin-config-schema
[Stack Overflow] point to config schema from package.json
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
---
|
||||
'@backstage/plugin-stack-overflow': patch
|
||||
'@backstage/plugin-stack-overflow-backend': patch
|
||||
---
|
||||
|
||||
app-config is now picked up properly.
|
||||
+2
-2
@@ -18,11 +18,11 @@ export interface Config {
|
||||
/**
|
||||
* Configuration options for the stack overflow plugin
|
||||
*/
|
||||
stackoverflow: {
|
||||
stackoverflow?: {
|
||||
/**
|
||||
* The base url of the Stack Overflow API used for the plugin
|
||||
* @visibility backend
|
||||
*/
|
||||
baseUrl: string;
|
||||
baseUrl?: string;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"config"
|
||||
]
|
||||
"config.d.ts"
|
||||
],
|
||||
"configSchema": "config.d.ts"
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -18,11 +18,11 @@ export interface Config {
|
||||
/**
|
||||
* Configuration options for the stack overflow plugin
|
||||
*/
|
||||
stackoverflow: {
|
||||
stackoverflow?: {
|
||||
/**
|
||||
* The base url of the Stack Overflow API used for the plugin
|
||||
* @visibility frontend
|
||||
*/
|
||||
baseUrl: string;
|
||||
baseUrl?: string;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -54,6 +54,7 @@
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"config"
|
||||
]
|
||||
"config.d.ts"
|
||||
],
|
||||
"configSchema": "config.d.ts"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user