@backstage/plugin-scaffolder-backend-module-cookiecutter 0.3.0 → 0.3.1-next.0
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 +14 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-cookiecutter
|
|
2
2
|
|
|
3
|
+
## 0.3.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 094eaa3: Remove references to in-repo backend-common
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-scaffolder-node@0.5.0-next.0
|
|
10
|
+
- @backstage/backend-defaults@0.5.1-next.0
|
|
11
|
+
- @backstage/backend-plugin-api@1.0.1-next.0
|
|
12
|
+
- @backstage/config@1.2.0
|
|
13
|
+
- @backstage/errors@1.2.4
|
|
14
|
+
- @backstage/integration@1.15.0
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
|
|
3
17
|
## 0.3.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
|
|
3
|
-
"version": "0.3.0",
|
|
3
|
+
"version": "0.3.1-next.0",
|
|
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",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
|
+
"backstage": "@backstage/BackendFeature",
|
|
22
23
|
"require": "./dist/index.cjs.js",
|
|
23
24
|
"types": "./dist/index.d.ts",
|
|
24
25
|
"default": "./dist/index.cjs.js"
|
|
@@ -41,12 +42,12 @@
|
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
44
|
"@backstage/backend-common": "^0.25.0",
|
|
44
|
-
"@backstage/backend-defaults": "^0.5.0",
|
|
45
|
-
"@backstage/backend-plugin-api": "^1.0.0",
|
|
45
|
+
"@backstage/backend-defaults": "^0.5.1-next.0",
|
|
46
|
+
"@backstage/backend-plugin-api": "^1.0.1-next.0",
|
|
46
47
|
"@backstage/config": "^1.2.0",
|
|
47
48
|
"@backstage/errors": "^1.2.4",
|
|
48
49
|
"@backstage/integration": "^1.15.0",
|
|
49
|
-
"@backstage/plugin-scaffolder-node": "^0.
|
|
50
|
+
"@backstage/plugin-scaffolder-node": "^0.5.0-next.0",
|
|
50
51
|
"@backstage/types": "^1.1.1",
|
|
51
52
|
"command-exists": "^1.2.9",
|
|
52
53
|
"fs-extra": "^11.2.0",
|
|
@@ -55,9 +56,9 @@
|
|
|
55
56
|
"yn": "^4.0.0"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-test-utils": "^1.0.0",
|
|
59
|
-
"@backstage/cli": "^0.
|
|
60
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.
|
|
59
|
+
"@backstage/backend-test-utils": "^1.0.1-next.0",
|
|
60
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
61
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.13-next.0",
|
|
61
62
|
"@types/command-exists": "^1.2.0",
|
|
62
63
|
"@types/fs-extra": "^11.0.0"
|
|
63
64
|
}
|