@backstage/plugin-devtools-backend 0.2.7-next.0 → 0.2.7-next.2

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 CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
+ ## 0.2.7-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 9aac2b0: Use `--cwd` as the first `yarn` argument
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.21.0-next.2
10
+ - @backstage/backend-plugin-api@0.6.10-next.2
11
+ - @backstage/plugin-auth-node@0.4.4-next.2
12
+ - @backstage/plugin-permission-node@0.7.21-next.2
13
+ - @backstage/config@1.1.1
14
+ - @backstage/cli-common@0.1.13
15
+ - @backstage/config-loader@1.6.1
16
+ - @backstage/errors@1.2.3
17
+ - @backstage/types@1.1.1
18
+ - @backstage/plugin-devtools-common@0.1.8
19
+ - @backstage/plugin-permission-common@0.7.12
20
+
21
+ ## 0.2.7-next.1
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/backend-plugin-api@0.6.10-next.1
27
+ - @backstage/backend-common@0.21.0-next.1
28
+ - @backstage/cli-common@0.1.13
29
+ - @backstage/config@1.1.1
30
+ - @backstage/config-loader@1.6.1
31
+ - @backstage/errors@1.2.3
32
+ - @backstage/types@1.1.1
33
+ - @backstage/plugin-auth-node@0.4.4-next.1
34
+ - @backstage/plugin-devtools-common@0.1.8
35
+ - @backstage/plugin-permission-common@0.7.12
36
+ - @backstage/plugin-permission-node@0.7.21-next.1
37
+
3
38
  ## 0.2.7-next.0
4
39
 
5
40
  ### Patch Changes
package/README.md CHANGED
@@ -10,7 +10,7 @@ Here's how to get the DevTools Backend up and running:
10
10
 
11
11
  ```sh
12
12
  # From the Backstage root directory
13
- yarn add --cwd packages/backend @backstage/plugin-devtools-backend
13
+ yarn --cwd packages/backend add @backstage/plugin-devtools-backend
14
14
  ```
15
15
 
16
16
  2. Then we will create a new file named `packages/backend/src/plugins/devtools.ts`, and add the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.2.7-next.0",
3
+ "version": "0.2.7-next.2",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -28,16 +28,16 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-common": "^0.21.0-next.0",
32
- "@backstage/backend-plugin-api": "^0.6.10-next.0",
31
+ "@backstage/backend-common": "^0.21.0-next.2",
32
+ "@backstage/backend-plugin-api": "^0.6.10-next.2",
33
33
  "@backstage/cli-common": "^0.1.13",
34
34
  "@backstage/config": "^1.1.1",
35
35
  "@backstage/config-loader": "^1.6.1",
36
36
  "@backstage/errors": "^1.2.3",
37
- "@backstage/plugin-auth-node": "^0.4.4-next.0",
37
+ "@backstage/plugin-auth-node": "^0.4.4-next.2",
38
38
  "@backstage/plugin-devtools-common": "^0.1.8",
39
39
  "@backstage/plugin-permission-common": "^0.7.12",
40
- "@backstage/plugin-permission-node": "^0.7.21-next.0",
40
+ "@backstage/plugin-permission-node": "^0.7.21-next.2",
41
41
  "@backstage/types": "^1.1.1",
42
42
  "@manypkg/get-packages": "^1.1.3",
43
43
  "@types/express": "*",
@@ -54,7 +54,7 @@
54
54
  "yn": "^4.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@backstage/cli": "^0.25.2-next.0",
57
+ "@backstage/cli": "^0.25.2-next.2",
58
58
  "@types/minimist": "^1.2.0",
59
59
  "@types/ping": "^0.4.1",
60
60
  "@types/supertest": "^2.0.8",