@backstage/plugin-search-backend-module-techdocs 0.3.3 → 0.3.4-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -6
- package/README.md +2 -4
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-techdocs
|
|
2
2
|
|
|
3
|
-
## 0.3.
|
|
3
|
+
## 0.3.4-next.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- ed0aaec: Update README
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/plugin-
|
|
9
|
-
- @backstage/
|
|
10
|
-
- @backstage/catalog-client@1.8.0
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
10
|
+
- @backstage/plugin-techdocs-node@1.12.15-next.0
|
|
11
|
+
- @backstage/catalog-client@1.8.1-next.0
|
|
11
12
|
- @backstage/catalog-model@1.7.1
|
|
12
13
|
- @backstage/config@1.3.0
|
|
13
14
|
- @backstage/plugin-catalog-common@1.1.1
|
|
14
|
-
- @backstage/plugin-catalog-node@1.14.0
|
|
15
|
+
- @backstage/plugin-catalog-node@1.14.1-next.0
|
|
15
16
|
- @backstage/plugin-permission-common@0.8.2
|
|
16
|
-
- @backstage/plugin-search-backend-node@1.3.
|
|
17
|
+
- @backstage/plugin-search-backend-node@1.3.6-next.0
|
|
17
18
|
- @backstage/plugin-search-common@1.2.15
|
|
18
19
|
|
|
19
20
|
## 0.3.2
|
package/README.md
CHANGED
|
@@ -16,12 +16,10 @@ Add the collator to your backend instance, along with the search plugin itself:
|
|
|
16
16
|
```tsx
|
|
17
17
|
// packages/backend/src/index.ts
|
|
18
18
|
import { createBackend } from '@backstage/backend-defaults';
|
|
19
|
-
import { searchPlugin } from '@backstage/plugin-search-backend/alpha';
|
|
20
|
-
import { searchModuleTechDocsCollator } from '@backstage/plugin-search-backend-module-techdocs/alpha';
|
|
21
19
|
|
|
22
20
|
const backend = createBackend();
|
|
23
|
-
backend.add(
|
|
24
|
-
backend.add(
|
|
21
|
+
backend.add(import('@backstage/plugin-search-backend'));
|
|
22
|
+
backend.add(import('@backstage/plugin-search-backend-module-techdocs'));
|
|
25
23
|
backend.start();
|
|
26
24
|
```
|
|
27
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-techdocs",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4-next.0",
|
|
4
4
|
"description": "A module for the search backend that exports techdocs modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -59,23 +59,23 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@backstage/backend-common": "^0.25.0",
|
|
62
|
-
"@backstage/backend-plugin-api": "
|
|
63
|
-
"@backstage/catalog-client": "
|
|
64
|
-
"@backstage/catalog-model": "
|
|
65
|
-
"@backstage/config": "
|
|
66
|
-
"@backstage/plugin-catalog-common": "
|
|
67
|
-
"@backstage/plugin-catalog-node": "
|
|
68
|
-
"@backstage/plugin-permission-common": "
|
|
69
|
-
"@backstage/plugin-search-backend-node": "
|
|
70
|
-
"@backstage/plugin-search-common": "
|
|
71
|
-
"@backstage/plugin-techdocs-node": "
|
|
62
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
63
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
64
|
+
"@backstage/catalog-model": "1.7.1",
|
|
65
|
+
"@backstage/config": "1.3.0",
|
|
66
|
+
"@backstage/plugin-catalog-common": "1.1.1",
|
|
67
|
+
"@backstage/plugin-catalog-node": "1.14.1-next.0",
|
|
68
|
+
"@backstage/plugin-permission-common": "0.8.2",
|
|
69
|
+
"@backstage/plugin-search-backend-node": "1.3.6-next.0",
|
|
70
|
+
"@backstage/plugin-search-common": "1.2.15",
|
|
71
|
+
"@backstage/plugin-techdocs-node": "1.12.15-next.0",
|
|
72
72
|
"lodash": "^4.17.21",
|
|
73
73
|
"node-fetch": "^2.7.0",
|
|
74
74
|
"p-limit": "^3.1.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/backend-test-utils": "
|
|
78
|
-
"@backstage/cli": "
|
|
77
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
78
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
79
79
|
"msw": "^1.0.0"
|
|
80
80
|
},
|
|
81
81
|
"configSchema": "config.d.ts"
|