@backstage/plugin-scaffolder-backend-module-cookiecutter 0.2.43-next.3 → 0.2.43
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 +15 -0
- package/dist/index.d.ts +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-cookiecutter
|
|
2
2
|
|
|
3
|
+
## 0.2.43
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.23.0
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
12
|
+
- @backstage/integration@1.12.0
|
|
13
|
+
- @backstage/plugin-scaffolder-node@0.4.5
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/errors@1.2.4
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
|
|
3
18
|
## 0.2.43-next.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -31,6 +31,6 @@ declare function createFetchCookiecutterAction(options: {
|
|
|
31
31
|
* @public
|
|
32
32
|
* The Cookiecutter Module for the Scaffolder Backend
|
|
33
33
|
*/
|
|
34
|
-
declare const cookiecutterModule:
|
|
34
|
+
declare const cookiecutterModule: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
35
35
|
|
|
36
36
|
export { createFetchCookiecutterAction, cookiecutterModule as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
|
|
3
|
-
"version": "0.2.43
|
|
3
|
+
"version": "0.2.43",
|
|
4
4
|
"description": "A module for the scaffolder backend that lets you template projects using cookiecutter",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"test": "backstage-cli package test"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/backend-common": "^0.23.0
|
|
44
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
43
|
+
"@backstage/backend-common": "^0.23.0",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
45
45
|
"@backstage/config": "^1.2.0",
|
|
46
46
|
"@backstage/errors": "^1.2.4",
|
|
47
|
-
"@backstage/integration": "^1.12.0
|
|
48
|
-
"@backstage/plugin-scaffolder-node": "^0.4.5
|
|
47
|
+
"@backstage/integration": "^1.12.0",
|
|
48
|
+
"@backstage/plugin-scaffolder-node": "^0.4.5",
|
|
49
49
|
"@backstage/types": "^1.1.1",
|
|
50
50
|
"command-exists": "^1.2.9",
|
|
51
51
|
"fs-extra": "^11.2.0",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"yn": "^4.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
57
|
-
"@backstage/cli": "^0.26.7
|
|
58
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.5
|
|
56
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
57
|
+
"@backstage/cli": "^0.26.7",
|
|
58
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.5",
|
|
59
59
|
"@types/command-exists": "^1.2.0",
|
|
60
60
|
"@types/fs-extra": "^11.0.0"
|
|
61
61
|
}
|