@spacelift-io/backstage-integration-frontend 0.0.0 → 0.1.1
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/README.md +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,14 +8,14 @@ This frontend plugin for Backstage provides a user interface to view and interac
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# From your Backstage root directory
|
|
11
|
-
yarn --cwd packages/app add @spacelift/backstage-integration-frontend
|
|
11
|
+
yarn --cwd packages/app add @spacelift-io/backstage-integration-frontend
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
2. Add the plugin to your `packages/app/src/App.tsx`:
|
|
15
15
|
|
|
16
16
|
```tsx
|
|
17
17
|
// packages/app/src/App.tsx
|
|
18
|
-
import { SpaceliftIoPage } from '@spacelift/backstage-integration-frontend';
|
|
18
|
+
import { SpaceliftIoPage } from '@spacelift-io/backstage-integration-frontend';
|
|
19
19
|
|
|
20
20
|
// ...
|
|
21
21
|
|
|
@@ -63,6 +63,16 @@ This frontend plugin relies on the permissions configured for the Spacelift API
|
|
|
63
63
|
|
|
64
64
|
Ensure that your Backstage instance has appropriate general permissions set up to control access to this plugin's pages and functionalities. This is crucial to prevent users from performing actions in Spacelift for which they are not authorized via the configured API key.
|
|
65
65
|
|
|
66
|
+
## Compatibility
|
|
67
|
+
|
|
68
|
+
This plugin requires:
|
|
69
|
+
|
|
70
|
+
- `@backstage/core-components` >= 0.17.1
|
|
71
|
+
- `@backstage/core-plugin-api` >= 1.10.6
|
|
72
|
+
- `@backstage/plugin-catalog-react` >= 1.17.0
|
|
73
|
+
|
|
74
|
+
It is compatible with Backstage 1.17.0 or later.
|
|
75
|
+
|
|
66
76
|
## Backend Plugin
|
|
67
77
|
|
|
68
78
|
This frontend plugin requires the [Spacelift Backend Plugin](../spacelift-io-backend/README.md) to be installed and configured.
|