@backstage/plugin-devtools-backend 0.0.0-nightly-20240611021715 → 0.0.0-nightly-20240613021705

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 (2) hide show
  1. package/CHANGELOG.md +26 -8
  2. package/package.json +31 -25
package/CHANGELOG.md CHANGED
@@ -1,21 +1,39 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
- ## 0.0.0-nightly-20240611021715
3
+ ## 0.0.0-nightly-20240613021705
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 8869b8e: Updated local development setup.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
8
9
  - Updated dependencies
9
- - @backstage/backend-common@0.0.0-nightly-20240611021715
10
- - @backstage/backend-plugin-api@0.0.0-nightly-20240611021715
11
- - @backstage/plugin-permission-node@0.0.0-nightly-20240611021715
12
- - @backstage/cli-common@0.0.0-nightly-20240611021715
13
- - @backstage/config-loader@0.0.0-nightly-20240611021715
10
+ - @backstage/backend-plugin-api@0.0.0-nightly-20240613021705
11
+ - @backstage/backend-common@0.0.0-nightly-20240613021705
12
+ - @backstage/plugin-permission-node@0.0.0-nightly-20240613021705
13
+ - @backstage/plugin-permission-common@0.0.0-nightly-20240613021705
14
+ - @backstage/plugin-devtools-common@0.0.0-nightly-20240613021705
15
+ - @backstage/cli-common@0.0.0-nightly-20240613021705
16
+ - @backstage/config-loader@0.0.0-nightly-20240613021705
17
+ - @backstage/config@1.2.0
18
+ - @backstage/errors@1.2.4
19
+ - @backstage/types@1.1.1
20
+
21
+ ## 0.3.5-next.3
22
+
23
+ ### Patch Changes
24
+
25
+ - d44a20a: Added additional plugin metadata to `package.json`.
26
+ - Updated dependencies
27
+ - @backstage/backend-plugin-api@0.6.19-next.3
28
+ - @backstage/plugin-permission-common@0.7.14-next.0
29
+ - @backstage/plugin-devtools-common@0.1.10-next.0
30
+ - @backstage/plugin-permission-node@0.7.30-next.3
31
+ - @backstage/cli-common@0.1.14-next.0
32
+ - @backstage/backend-common@0.23.0-next.3
33
+ - @backstage/config-loader@1.8.1-next.0
14
34
  - @backstage/config@1.2.0
15
35
  - @backstage/errors@1.2.4
16
36
  - @backstage/types@1.1.1
17
- - @backstage/plugin-devtools-common@0.1.9
18
- - @backstage/plugin-permission-common@0.7.13
19
37
 
20
38
  ## 0.3.5-next.2
21
39
 
package/package.json CHANGED
@@ -1,42 +1,52 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.0.0-nightly-20240611021715",
4
- "main": "dist/index.cjs.js",
5
- "types": "dist/index.d.ts",
6
- "license": "Apache-2.0",
3
+ "version": "0.0.0-nightly-20240613021705",
4
+ "backstage": {
5
+ "role": "backend-plugin",
6
+ "pluginId": "devtools",
7
+ "pluginPackages": [
8
+ "@backstage/plugin-devtools",
9
+ "@backstage/plugin-devtools-backend",
10
+ "@backstage/plugin-devtools-common"
11
+ ]
12
+ },
7
13
  "publishConfig": {
8
14
  "access": "public",
9
15
  "main": "dist/index.cjs.js",
10
16
  "types": "dist/index.d.ts"
11
17
  },
12
- "backstage": {
13
- "role": "backend-plugin"
14
- },
15
18
  "homepage": "https://backstage.io",
16
19
  "repository": {
17
20
  "type": "git",
18
21
  "url": "https://github.com/backstage/backstage",
19
22
  "directory": "plugins/devtools-backend"
20
23
  },
24
+ "license": "Apache-2.0",
25
+ "main": "dist/index.cjs.js",
26
+ "types": "dist/index.d.ts",
27
+ "files": [
28
+ "dist",
29
+ "config.d.ts"
30
+ ],
21
31
  "scripts": {
22
- "start": "backstage-cli package start",
23
32
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
33
  "clean": "backstage-cli package clean",
34
+ "lint": "backstage-cli package lint",
27
35
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
36
+ "postpack": "backstage-cli package postpack",
37
+ "start": "backstage-cli package start",
38
+ "test": "backstage-cli package test"
29
39
  },
30
40
  "dependencies": {
31
- "@backstage/backend-common": "^0.0.0-nightly-20240611021715",
32
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240611021715",
33
- "@backstage/cli-common": "^0.0.0-nightly-20240611021715",
41
+ "@backstage/backend-common": "^0.0.0-nightly-20240613021705",
42
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240613021705",
43
+ "@backstage/cli-common": "^0.0.0-nightly-20240613021705",
34
44
  "@backstage/config": "^1.2.0",
35
- "@backstage/config-loader": "^0.0.0-nightly-20240611021715",
45
+ "@backstage/config-loader": "^0.0.0-nightly-20240613021705",
36
46
  "@backstage/errors": "^1.2.4",
37
- "@backstage/plugin-devtools-common": "^0.1.9",
38
- "@backstage/plugin-permission-common": "^0.7.13",
39
- "@backstage/plugin-permission-node": "^0.0.0-nightly-20240611021715",
47
+ "@backstage/plugin-devtools-common": "^0.0.0-nightly-20240613021705",
48
+ "@backstage/plugin-permission-common": "^0.0.0-nightly-20240613021705",
49
+ "@backstage/plugin-permission-node": "^0.0.0-nightly-20240613021705",
40
50
  "@backstage/types": "^1.1.1",
41
51
  "@manypkg/get-packages": "^1.1.3",
42
52
  "@types/express": "*",
@@ -52,17 +62,13 @@
52
62
  "yn": "^4.0.0"
53
63
  },
54
64
  "devDependencies": {
55
- "@backstage/backend-defaults": "^0.0.0-nightly-20240611021715",
56
- "@backstage/backend-test-utils": "^0.0.0-nightly-20240611021715",
57
- "@backstage/cli": "^0.0.0-nightly-20240611021715",
65
+ "@backstage/backend-defaults": "^0.0.0-nightly-20240613021705",
66
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20240613021705",
67
+ "@backstage/cli": "^0.0.0-nightly-20240613021705",
58
68
  "@types/ping": "^0.4.1",
59
69
  "@types/supertest": "^2.0.8",
60
70
  "@types/yarnpkg__lockfile": "^1.1.4",
61
71
  "supertest": "^6.2.4"
62
72
  },
63
- "files": [
64
- "dist",
65
- "config.d.ts"
66
- ],
67
73
  "configSchema": "config.d.ts"
68
74
  }