@backstage/plugin-scaffolder-backend-module-cookiecutter 0.1.10 → 0.2.1
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 +46 -0
- package/dist/index.d.ts +9 -1
- package/package.json +19 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-cookiecutter
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix for the previous release with missing type declarations.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.10.9
|
|
10
|
+
- @backstage/config@0.1.15
|
|
11
|
+
- @backstage/errors@0.2.2
|
|
12
|
+
- @backstage/integration@0.7.4
|
|
13
|
+
- @backstage/types@0.1.3
|
|
14
|
+
- @backstage/plugin-scaffolder-backend@0.16.1
|
|
15
|
+
|
|
16
|
+
## 0.2.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 661594bf43: Updated to the latest version of `@backstage/plugin-scaffolder-backend`, meaning the `TemplateAction` now exposes the precise input type rather than `any`.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- c77c5c7eb6: Added `backstage.role` to `package.json`
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-common@0.10.8
|
|
27
|
+
- @backstage/errors@0.2.1
|
|
28
|
+
- @backstage/integration@0.7.3
|
|
29
|
+
- @backstage/plugin-scaffolder-backend@0.16.0
|
|
30
|
+
- @backstage/config@0.1.14
|
|
31
|
+
- @backstage/types@0.1.2
|
|
32
|
+
|
|
33
|
+
## 0.1.11
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/backend-common@0.10.7
|
|
39
|
+
- @backstage/plugin-scaffolder-backend@0.15.24
|
|
40
|
+
|
|
41
|
+
## 0.1.11-next.0
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies
|
|
46
|
+
- @backstage/backend-common@0.10.7-next.0
|
|
47
|
+
- @backstage/plugin-scaffolder-backend@0.15.24-next.0
|
|
48
|
+
|
|
3
49
|
## 0.1.10
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import * as _backstage_plugin_scaffolder_backend from '@backstage/plugin-scaffolder-backend';
|
|
3
3
|
import { UrlReader, ContainerRunner } from '@backstage/backend-common';
|
|
4
|
+
import { JsonObject } from '@backstage/types';
|
|
4
5
|
import { ScmIntegrations } from '@backstage/integration';
|
|
5
6
|
|
|
6
7
|
/**
|
|
@@ -16,6 +17,13 @@ declare function createFetchCookiecutterAction(options: {
|
|
|
16
17
|
reader: UrlReader;
|
|
17
18
|
integrations: ScmIntegrations;
|
|
18
19
|
containerRunner: ContainerRunner;
|
|
19
|
-
}): _backstage_plugin_scaffolder_backend.TemplateAction<
|
|
20
|
+
}): _backstage_plugin_scaffolder_backend.TemplateAction<{
|
|
21
|
+
url: string;
|
|
22
|
+
targetPath?: string | undefined;
|
|
23
|
+
values: JsonObject;
|
|
24
|
+
copyWithoutRender?: string[] | undefined;
|
|
25
|
+
extensions?: string[] | undefined;
|
|
26
|
+
imageName?: string | undefined;
|
|
27
|
+
}>;
|
|
20
28
|
|
|
21
29
|
export { createFetchCookiecutterAction };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
|
|
3
3
|
"description": "A module for the scaffolder backend that lets you template projects using cookiecutter",
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -10,29 +10,32 @@
|
|
|
10
10
|
"main": "dist/index.cjs.js",
|
|
11
11
|
"types": "dist/index.d.ts"
|
|
12
12
|
},
|
|
13
|
+
"backstage": {
|
|
14
|
+
"role": "backend-plugin-module"
|
|
15
|
+
},
|
|
13
16
|
"scripts": {
|
|
14
|
-
"start": "backstage-cli
|
|
15
|
-
"build": "backstage-cli
|
|
16
|
-
"lint": "backstage-cli lint",
|
|
17
|
-
"test": "backstage-cli test",
|
|
18
|
-
"prepack": "backstage-cli prepack",
|
|
19
|
-
"postpack": "backstage-cli postpack",
|
|
20
|
-
"clean": "backstage-cli clean"
|
|
17
|
+
"start": "backstage-cli package start",
|
|
18
|
+
"build": "backstage-cli package build",
|
|
19
|
+
"lint": "backstage-cli package lint",
|
|
20
|
+
"test": "backstage-cli package test",
|
|
21
|
+
"prepack": "backstage-cli package prepack",
|
|
22
|
+
"postpack": "backstage-cli package postpack",
|
|
23
|
+
"clean": "backstage-cli package clean"
|
|
21
24
|
},
|
|
22
25
|
"dependencies": {
|
|
23
|
-
"@backstage/backend-common": "^0.10.
|
|
24
|
-
"@backstage/config": "^0.1.
|
|
25
|
-
"@backstage/errors": "^0.2.
|
|
26
|
-
"@backstage/integration": "^0.7.
|
|
27
|
-
"@backstage/plugin-scaffolder-backend": "^0.
|
|
28
|
-
"@backstage/types": "^0.1.
|
|
26
|
+
"@backstage/backend-common": "^0.10.9",
|
|
27
|
+
"@backstage/config": "^0.1.15",
|
|
28
|
+
"@backstage/errors": "^0.2.2",
|
|
29
|
+
"@backstage/integration": "^0.7.4",
|
|
30
|
+
"@backstage/plugin-scaffolder-backend": "^0.16.1",
|
|
31
|
+
"@backstage/types": "^0.1.3",
|
|
29
32
|
"command-exists": "^1.2.9",
|
|
30
33
|
"fs-extra": "10.0.0",
|
|
31
34
|
"winston": "^3.2.1",
|
|
32
35
|
"yn": "^4.0.0"
|
|
33
36
|
},
|
|
34
37
|
"devDependencies": {
|
|
35
|
-
"@backstage/cli": "^0.
|
|
38
|
+
"@backstage/cli": "^0.14.0",
|
|
36
39
|
"@types/command-exists": "^1.2.0",
|
|
37
40
|
"@types/fs-extra": "^9.0.1",
|
|
38
41
|
"@types/jest": "^26.0.7",
|
|
@@ -43,5 +46,5 @@
|
|
|
43
46
|
"files": [
|
|
44
47
|
"dist"
|
|
45
48
|
],
|
|
46
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
|
|
47
50
|
}
|