Merge pull request #7181 from backstage/rugvip/descriptions

Add package descriptions + separate table for plugins in API reference
This commit is contained in:
Patrik Oldsberg
2021-09-15 17:25:27 +02:00
committed by GitHub
248 changed files with 710 additions and 198 deletions
-2
View File
@@ -390,6 +390,4 @@ export class TechDocsStorageClient implements TechDocsStorageApi {
// src/home/components/EntityListDocsTable.d.ts:11:5 - (ae-forgotten-export) The symbol "columnFactories" needs to be exported by the entry point index.d.ts
// src/home/components/EntityListDocsTable.d.ts:12:5 - (ae-forgotten-export) The symbol "actionFactories" needs to be exported by the entry point index.d.ts
// src/plugin.d.ts:29:5 - (ae-forgotten-export) The symbol "TabsConfig" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-techdocs",
"description": "The Backstage plugin that renders technical documentation for your components",
"version": "0.11.1",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* The Backstage plugin that renders technical documentation for your components
*
* @packageDocumentation
*/
export * from './api';
export { techdocsApiRef, techdocsStorageApiRef } from './api';
export type { TechDocsApi, TechDocsStorageApi } from './api';