@backstage/plugin-search-backend-module-explore 0.2.5 → 0.2.6-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 +11 -0
- package/README.md +2 -4
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend-module-explore
|
|
2
2
|
|
|
3
|
+
## 0.2.6-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ed0aaec: Update README
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
10
|
+
- @backstage/config@1.3.0
|
|
11
|
+
- @backstage/plugin-search-backend-node@1.3.6-next.0
|
|
12
|
+
- @backstage/plugin-search-common@1.2.15
|
|
13
|
+
|
|
3
14
|
## 0.2.5
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
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 { searchModuleExploreCollator } from '@backstage/plugin-search-backend-module-explore/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-explore'));
|
|
25
23
|
backend.start();
|
|
26
24
|
```
|
|
27
25
|
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
4
4
|
import { DiscoveryService, LoggerService, AuthService } from '@backstage/backend-plugin-api';
|
|
5
5
|
import { Config } from '@backstage/config';
|
|
6
6
|
import { ExploreTool } from '@backstage-community/plugin-explore-common';
|
|
7
|
-
import {
|
|
7
|
+
import { IndexableDocument, DocumentCollatorFactory } from '@backstage/plugin-search-common';
|
|
8
8
|
import { Readable } from 'stream';
|
|
9
9
|
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend-module-explore",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6-next.0",
|
|
4
4
|
"description": "A module for the search backend that exports explore modules",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -60,15 +60,15 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@backstage-community/plugin-explore-common": "^0.0.7",
|
|
62
62
|
"@backstage/backend-common": "^0.25.0",
|
|
63
|
-
"@backstage/backend-plugin-api": "
|
|
64
|
-
"@backstage/config": "
|
|
65
|
-
"@backstage/plugin-search-backend-node": "
|
|
66
|
-
"@backstage/plugin-search-common": "
|
|
63
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
64
|
+
"@backstage/config": "1.3.0",
|
|
65
|
+
"@backstage/plugin-search-backend-node": "1.3.6-next.0",
|
|
66
|
+
"@backstage/plugin-search-common": "1.2.15",
|
|
67
67
|
"node-fetch": "^2.7.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/backend-test-utils": "
|
|
71
|
-
"@backstage/cli": "
|
|
70
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
71
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
72
72
|
"msw": "^1.2.1"
|
|
73
73
|
},
|
|
74
74
|
"configSchema": "config.d.ts"
|