@backstage/backend-dev-utils 0.1.0-next.0 → 0.1.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 +10 -0
- package/README.md +18 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @backstage/backend-dev-utils
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9d9cdea117: Introduced a new package for backend development utilities. Similar to how `@backstage/dev-utils` is used in the frontend.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 725383f69d: Tweaked messaging in the README.
|
|
12
|
+
|
|
3
13
|
## 0.1.0-next.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
|
-
# backend-dev-utils
|
|
1
|
+
# @backstage/backend-dev-utils
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**This package is EXPERIMENTAL, but we encourage use of it to add support for the new backend system in your own plugins**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package helps set up local development environments for Backstage backend packages.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add the library to your backend plugin or module package:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# From your Backstage root directory
|
|
13
|
+
yarn add --cwd plugins/<plugin>-backend @backstage/backend-dev-utils
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
- [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
|
|
19
|
+
- [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
|
|
20
|
+
- [Backstage Backend System](https://backstage.io/docs/backend-system/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-dev-utils",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@backstage/cli": "^0.22.2
|
|
31
|
+
"@backstage/cli": "^0.22.2"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|