@backstage/plugin-scaffolder-backend-module-cookiecutter 0.3.8-next.1 → 0.3.8

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,32 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-cookiecutter
2
2
 
3
+ ## 0.3.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 09cf038: Got rid of most `@backstage/backend-common` usages
8
+ - Updated dependencies
9
+ - @backstage/integration@1.16.2
10
+ - @backstage/backend-defaults@0.8.2
11
+ - @backstage/plugin-scaffolder-node@0.8.0
12
+ - @backstage/backend-plugin-api@1.2.1
13
+ - @backstage/config@1.3.2
14
+ - @backstage/errors@1.2.7
15
+ - @backstage/types@1.2.1
16
+
17
+ ## 0.3.8-next.2
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/plugin-scaffolder-node@0.8.0-next.2
23
+ - @backstage/backend-defaults@0.8.2-next.2
24
+ - @backstage/integration@1.16.2-next.0
25
+ - @backstage/backend-plugin-api@1.2.1-next.1
26
+ - @backstage/config@1.3.2
27
+ - @backstage/errors@1.2.7
28
+ - @backstage/types@1.2.1
29
+
3
30
  ## 0.3.8-next.1
4
31
 
5
32
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { Writable } from 'stream';
3
2
  import * as _backstage_plugin_scaffolder_node from '@backstage/plugin-scaffolder-node';
4
3
  import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
@@ -54,12 +53,12 @@ declare function createFetchCookiecutterAction(options: {
54
53
  containerRunner?: ContainerRunner;
55
54
  }): _backstage_plugin_scaffolder_node.TemplateAction<{
56
55
  url: string;
57
- targetPath?: string | undefined;
56
+ targetPath?: string;
58
57
  values: JsonObject;
59
- copyWithoutRender?: string[] | undefined;
60
- extensions?: string[] | undefined;
61
- imageName?: string | undefined;
62
- }, JsonObject>;
58
+ copyWithoutRender?: string[];
59
+ extensions?: string[];
60
+ imageName?: string;
61
+ }, JsonObject, "v1">;
63
62
 
64
63
  /**
65
64
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
3
- "version": "0.3.8-next.1",
3
+ "version": "0.3.8",
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",
@@ -31,13 +31,6 @@
31
31
  },
32
32
  "main": "./dist/index.cjs.js",
33
33
  "types": "./dist/index.d.ts",
34
- "typesVersions": {
35
- "*": {
36
- "index": [
37
- "dist/index.d.ts"
38
- ]
39
- }
40
- },
41
34
  "files": [
42
35
  "dist"
43
36
  ],
@@ -51,13 +44,13 @@
51
44
  "test": "backstage-cli package test"
52
45
  },
53
46
  "dependencies": {
54
- "@backstage/backend-defaults": "0.8.2-next.1",
55
- "@backstage/backend-plugin-api": "1.2.1-next.1",
56
- "@backstage/config": "1.3.2",
57
- "@backstage/errors": "1.2.7",
58
- "@backstage/integration": "1.16.1",
59
- "@backstage/plugin-scaffolder-node": "0.7.1-next.1",
60
- "@backstage/types": "1.2.1",
47
+ "@backstage/backend-defaults": "^0.8.2",
48
+ "@backstage/backend-plugin-api": "^1.2.1",
49
+ "@backstage/config": "^1.3.2",
50
+ "@backstage/errors": "^1.2.7",
51
+ "@backstage/integration": "^1.16.2",
52
+ "@backstage/plugin-scaffolder-node": "^0.8.0",
53
+ "@backstage/types": "^1.2.1",
61
54
  "command-exists": "^1.2.9",
62
55
  "fs-extra": "^11.2.0",
63
56
  "winston": "^3.2.1",
@@ -65,9 +58,9 @@
65
58
  "yn": "^4.0.0"
66
59
  },
67
60
  "devDependencies": {
68
- "@backstage/backend-test-utils": "1.3.1-next.1",
69
- "@backstage/cli": "0.30.1-next.0",
70
- "@backstage/plugin-scaffolder-node-test-utils": "0.1.20-next.1",
61
+ "@backstage/backend-test-utils": "^1.3.1",
62
+ "@backstage/cli": "^0.31.0",
63
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.2.0",
71
64
  "@types/command-exists": "^1.2.0",
72
65
  "@types/fs-extra": "^11.0.0"
73
66
  }