@backstage/plugin-devtools-backend 0.0.0-nightly-20240216021020 → 0.0.0-nightly-20240217020958

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,18 +1,19 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
- ## 0.0.0-nightly-20240216021020
3
+ ## 0.0.0-nightly-20240217020958
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - b64ce5a: Updated New Backend System instructions to use default import
7
8
  - 9aac2b0: Use `--cwd` as the first `yarn` argument
8
9
  - 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
9
10
  Updated dependency `@types/fs-extra` to `^11.0.0`.
10
11
  - Updated dependencies
11
- - @backstage/backend-common@0.0.0-nightly-20240216021020
12
- - @backstage/backend-plugin-api@0.0.0-nightly-20240216021020
13
- - @backstage/config-loader@0.0.0-nightly-20240216021020
14
- - @backstage/plugin-auth-node@0.0.0-nightly-20240216021020
15
- - @backstage/plugin-permission-node@0.0.0-nightly-20240216021020
12
+ - @backstage/backend-common@0.0.0-nightly-20240217020958
13
+ - @backstage/backend-plugin-api@0.0.0-nightly-20240217020958
14
+ - @backstage/config-loader@0.0.0-nightly-20240217020958
15
+ - @backstage/plugin-auth-node@0.0.0-nightly-20240217020958
16
+ - @backstage/plugin-permission-node@0.0.0-nightly-20240217020958
16
17
  - @backstage/cli-common@0.1.13
17
18
  - @backstage/config@1.1.1
18
19
  - @backstage/errors@1.2.3
package/README.md CHANGED
@@ -57,13 +57,12 @@ In your `packages/backend/src/index.ts` make the following changes:
57
57
 
58
58
  ```diff
59
59
  import { createBackend } from '@backstage/backend-defaults';
60
- + import { devtoolsPlugin } from '@backstage/plugin-devtools-backend';
61
60
 
62
61
  const backend = createBackend();
63
62
 
64
63
  // ... other feature additions
65
64
 
66
- + backend.add(devtoolsPlugin());
65
+ + backend.add(import('@backstage/plugin-devtools-backend'));
67
66
 
68
67
  backend.start();
69
68
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.0.0-nightly-20240216021020",
3
+ "version": "0.0.0-nightly-20240217020958",
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.0.0-nightly-20240216021020",
32
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240216021020",
31
+ "@backstage/backend-common": "^0.0.0-nightly-20240217020958",
32
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240217020958",
33
33
  "@backstage/cli-common": "^0.1.13",
34
34
  "@backstage/config": "^1.1.1",
35
- "@backstage/config-loader": "^0.0.0-nightly-20240216021020",
35
+ "@backstage/config-loader": "^0.0.0-nightly-20240217020958",
36
36
  "@backstage/errors": "^1.2.3",
37
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20240216021020",
37
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20240217020958",
38
38
  "@backstage/plugin-devtools-common": "^0.1.8",
39
39
  "@backstage/plugin-permission-common": "^0.7.12",
40
- "@backstage/plugin-permission-node": "^0.0.0-nightly-20240216021020",
40
+ "@backstage/plugin-permission-node": "^0.0.0-nightly-20240217020958",
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.0.0-nightly-20240216021020",
57
+ "@backstage/cli": "^0.0.0-nightly-20240217020958",
58
58
  "@types/minimist": "^1.2.0",
59
59
  "@types/ping": "^0.4.1",
60
60
  "@types/supertest": "^2.0.8",