@backstage/backend-dev-utils 0.1.0-next.0 → 0.1.1-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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +18 -3
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/backend-dev-utils
2
2
 
3
+ ## 0.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 482dae5de1c: Updated link to docs.
8
+
9
+ ## 0.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 9d9cdea117: Introduced a new package for backend development utilities. Similar to how `@backstage/dev-utils` is used in the frontend.
14
+
15
+ ### Patch Changes
16
+
17
+ - 725383f69d: Tweaked messaging in the README.
18
+
3
19
  ## 0.1.0-next.0
4
20
 
5
21
  ### Minor Changes
package/README.md CHANGED
@@ -1,5 +1,20 @@
1
- # backend-dev-utils
1
+ # @backstage/backend-dev-utils
2
2
 
3
- Welcome to the backend-dev-utils package!
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
- _This package is experimental._
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://backstage.io/docs)
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-next.0",
3
+ "version": "0.1.1-next.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-next.1"
31
+ "@backstage/cli": "^0.22.4-next.1"
32
32
  },
33
33
  "files": [
34
34
  "dist"