@backstage/plugin-app-node 0.1.10-next.3 → 0.1.10
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 +12 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-app-node
|
|
2
2
|
|
|
3
|
+
## 0.1.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8472188: Added or fixed the `repository` field in `package.json`.
|
|
8
|
+
- 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
|
|
9
|
+
Updated dependency `@types/fs-extra` to `^11.0.0`.
|
|
10
|
+
- 54ad8e1: Allow the `app-backend` plugin to use a global configuration schema provided externally through an extension.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.10
|
|
13
|
+
- @backstage/config-loader@1.6.2
|
|
14
|
+
|
|
3
15
|
## 0.1.10-next.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-node",
|
|
3
3
|
"description": "Node.js library for the app plugin",
|
|
4
|
-
"version": "0.1.10
|
|
4
|
+
"version": "0.1.10",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"postpack": "backstage-cli package postpack"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@backstage/cli": "^0.25.2
|
|
30
|
+
"@backstage/cli": "^0.25.2"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-plugin-api": "^0.6.10
|
|
37
|
-
"@backstage/config-loader": "^1.6.2
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.6.10",
|
|
37
|
+
"@backstage/config-loader": "^1.6.2",
|
|
38
38
|
"@types/express": "^4.17.6",
|
|
39
39
|
"express": "^4.17.1",
|
|
40
|
-
"fs-extra": "
|
|
40
|
+
"fs-extra": "^11.2.0"
|
|
41
41
|
}
|
|
42
42
|
}
|