@backstage/plugin-scaffolder-backend-module-cookiecutter 0.1.10-next.1 → 0.2.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 CHANGED
@@ -1,5 +1,46 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-cookiecutter
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 661594bf43: Updated to the latest version of `@backstage/plugin-scaffolder-backend`, meaning the `TemplateAction` now exposes the precise input type rather than `any`.
8
+
9
+ ### Patch Changes
10
+
11
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
12
+ - Updated dependencies
13
+ - @backstage/backend-common@0.10.8
14
+ - @backstage/errors@0.2.1
15
+ - @backstage/integration@0.7.3
16
+ - @backstage/plugin-scaffolder-backend@0.16.0
17
+ - @backstage/config@0.1.14
18
+ - @backstage/types@0.1.2
19
+
20
+ ## 0.1.11
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/backend-common@0.10.7
26
+ - @backstage/plugin-scaffolder-backend@0.15.24
27
+
28
+ ## 0.1.11-next.0
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/backend-common@0.10.7-next.0
34
+ - @backstage/plugin-scaffolder-backend@0.15.24-next.0
35
+
36
+ ## 0.1.10
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies
41
+ - @backstage/plugin-scaffolder-backend@0.15.23
42
+ - @backstage/backend-common@0.10.6
43
+
3
44
  ## 0.1.10-next.1
4
45
 
5
46
  ### Patch Changes
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.10-next.1",
4
+ "version": "0.2.0",
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 backend:dev",
15
- "build": "backstage-cli backend:build",
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.6-next.0",
24
- "@backstage/config": "^0.1.13",
25
- "@backstage/errors": "^0.2.0",
26
- "@backstage/integration": "^0.7.2",
27
- "@backstage/plugin-scaffolder-backend": "^0.15.23-next.1",
28
- "@backstage/types": "^0.1.1",
26
+ "@backstage/backend-common": "^0.10.8",
27
+ "@backstage/config": "^0.1.14",
28
+ "@backstage/errors": "^0.2.1",
29
+ "@backstage/integration": "^0.7.3",
30
+ "@backstage/plugin-scaffolder-backend": "^0.16.0",
31
+ "@backstage/types": "^0.1.2",
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.13.1-next.1",
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": "d6da97a1edeb21fcefc682d91916987ba9f3d89a"
49
+ "gitHead": "4805c3d13ce9bfc369e53c271b1b95e722b3b4dc"
47
50
  }
package/dist/index.d.ts DELETED
@@ -1,21 +0,0 @@
1
- /// <reference types="node" />
2
- import * as _backstage_plugin_scaffolder_backend from '@backstage/plugin-scaffolder-backend';
3
- import { UrlReader, ContainerRunner } from '@backstage/backend-common';
4
- import { ScmIntegrations } from '@backstage/integration';
5
-
6
- /**
7
- * Creates a `fetch:cookiecutter` Scaffolder action.
8
- *
9
- * @remarks
10
- *
11
- * See {@link https://cookiecutter.readthedocs.io/} and {@link https://backstage.io/docs/features/software-templates/writing-custom-actions}.
12
- * @param options - Templating configuration.
13
- * @public
14
- */
15
- declare function createFetchCookiecutterAction(options: {
16
- reader: UrlReader;
17
- integrations: ScmIntegrations;
18
- containerRunner: ContainerRunner;
19
- }): _backstage_plugin_scaffolder_backend.TemplateAction<any>;
20
-
21
- export { createFetchCookiecutterAction };