@backstage/plugin-scaffolder-backend-module-cookiecutter 0.0.0-nightly-20220216022224 → 0.0.0-nightly-20220217022146

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,6 +1,6 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-cookiecutter
2
2
 
3
- ## 0.0.0-nightly-20220216022224
3
+ ## 0.0.0-nightly-20220217022146
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -8,11 +8,14 @@
8
8
 
9
9
  ### Patch Changes
10
10
 
11
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
11
12
  - Updated dependencies
12
- - @backstage/backend-common@0.0.0-nightly-20220216022224
13
- - @backstage/errors@0.0.0-nightly-20220216022224
14
- - @backstage/integration@0.0.0-nightly-20220216022224
15
- - @backstage/plugin-scaffolder-backend@0.0.0-nightly-20220216022224
13
+ - @backstage/backend-common@0.0.0-nightly-20220217022146
14
+ - @backstage/errors@0.0.0-nightly-20220217022146
15
+ - @backstage/integration@0.0.0-nightly-20220217022146
16
+ - @backstage/plugin-scaffolder-backend@0.0.0-nightly-20220217022146
17
+ - @backstage/config@0.0.0-nightly-20220217022146
18
+ - @backstage/types@0.0.0-nightly-20220217022146
16
19
 
17
20
  ## 0.1.11
18
21
 
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.0.0-nightly-20220216022224",
4
+ "version": "0.0.0-nightly-20220217022146",
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.0.0-nightly-20220216022224",
24
- "@backstage/errors": "^0.0.0-nightly-20220216022224",
25
- "@backstage/integration": "^0.0.0-nightly-20220216022224",
26
- "@backstage/plugin-scaffolder-backend": "^0.0.0-nightly-20220216022224",
27
- "@backstage/config": "^0.1.13",
28
- "@backstage/types": "^0.1.1",
26
+ "@backstage/backend-common": "^0.0.0-nightly-20220217022146",
27
+ "@backstage/errors": "^0.0.0-nightly-20220217022146",
28
+ "@backstage/integration": "^0.0.0-nightly-20220217022146",
29
+ "@backstage/plugin-scaffolder-backend": "^0.0.0-nightly-20220217022146",
30
+ "@backstage/config": "^0.0.0-nightly-20220217022146",
31
+ "@backstage/types": "^0.0.0-nightly-20220217022146",
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.0.0-nightly-20220216022224",
38
+ "@backstage/cli": "^0.0.0-nightly-20220217022146",
36
39
  "@types/fs-extra": "^9.0.1",
37
40
  "@types/mock-fs": "^4.13.0",
38
41
  "@types/jest": "^26.0.7",
package/dist/index.d.ts DELETED
@@ -1,29 +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 { JsonObject } from '@backstage/types';
5
- import { ScmIntegrations } from '@backstage/integration';
6
-
7
- /**
8
- * Creates a `fetch:cookiecutter` Scaffolder action.
9
- *
10
- * @remarks
11
- *
12
- * See {@link https://cookiecutter.readthedocs.io/} and {@link https://backstage.io/docs/features/software-templates/writing-custom-actions}.
13
- * @param options - Templating configuration.
14
- * @public
15
- */
16
- declare function createFetchCookiecutterAction(options: {
17
- reader: UrlReader;
18
- integrations: ScmIntegrations;
19
- containerRunner: ContainerRunner;
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
- }>;
28
-
29
- export { createFetchCookiecutterAction };