@roadiehq/scaffolder-backend-module-utils 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/dist/index.d.ts +0 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roadiehq/scaffolder-backend-module-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -22,12 +22,12 @@
22
22
  "email": "support@roadie.io"
23
23
  },
24
24
  "scripts": {
25
- "start": "backstage-cli backend:dev",
26
- "build": "backstage-cli backend:build",
27
- "lint": "backstage-cli lint",
28
- "test": "backstage-cli test",
29
- "prepack": "backstage-cli prepack",
30
- "postpack": "backstage-cli postpack",
25
+ "start": "backstage-cli package start",
26
+ "build": "backstage-cli package build",
27
+ "lint": "backstage-cli package lint",
28
+ "test": "backstage-cli package test",
29
+ "prepack": "backstage-cli package prepack",
30
+ "postpack": "backstage-cli package postpack",
31
31
  "clean": "backstage-cli clean"
32
32
  },
33
33
  "dependencies": {
@@ -41,7 +41,7 @@
41
41
  "winston": "^3.2.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/cli": "^0.17.0",
44
+ "@backstage/cli": "^0.18.0",
45
45
  "@types/adm-zip": "^0.4.34",
46
46
  "@types/fs-extra": "^9.0.13",
47
47
  "@types/jest": "^26.0.7",
@@ -51,5 +51,5 @@
51
51
  "files": [
52
52
  "dist"
53
53
  ],
54
- "gitHead": "242e5b69629532b7cee81c1b2b9741d1bf73ea54"
54
+ "gitHead": "5a6be786c5a1c8dc8f0714f28941bb1c76159ca2"
55
55
  }
package/dist/index.d.ts DELETED
@@ -1,24 +0,0 @@
1
- import * as _backstage_plugin_scaffolder_backend from '@backstage/plugin-scaffolder-backend';
2
-
3
- declare function createZipAction(): _backstage_plugin_scaffolder_backend.TemplateAction<{
4
- path: string;
5
- outputPath: string;
6
- }>;
7
-
8
- declare function createWriteFileAction(): _backstage_plugin_scaffolder_backend.TemplateAction<{
9
- path: string;
10
- content: string;
11
- }>;
12
-
13
- declare function createAppendFileAction(): _backstage_plugin_scaffolder_backend.TemplateAction<{
14
- path: string;
15
- content: string;
16
- }>;
17
-
18
- declare function createSleepAction(options?: {
19
- maxSleep?: number;
20
- }): _backstage_plugin_scaffolder_backend.TemplateAction<{
21
- amount: number;
22
- }>;
23
-
24
- export { createAppendFileAction, createSleepAction, createWriteFileAction, createZipAction };