@backstage/plugin-scaffolder-backend 1.4.0-next.1 → 1.4.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 +106 -4
- package/alpha/package.json +6 -0
- package/dist/index.alpha.d.ts +967 -0
- package/dist/index.beta.d.ts +963 -0
- package/dist/index.cjs.js +1674 -1419
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +665 -553
- package/package.json +25 -21
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
4
|
-
"version": "1.4.0
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public",
|
|
11
11
|
"main": "dist/index.cjs.js",
|
|
12
|
-
"types": "dist/index.d.ts"
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"alphaTypes": "dist/index.alpha.d.ts"
|
|
13
14
|
},
|
|
14
15
|
"backstage": {
|
|
15
16
|
"role": "backend-plugin"
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
28
|
"start": "backstage-cli package start",
|
|
28
|
-
"build": "backstage-cli package build",
|
|
29
|
+
"build": "backstage-cli package build --experimental-type-build",
|
|
29
30
|
"lint": "backstage-cli package lint",
|
|
30
31
|
"test": "backstage-cli package test",
|
|
31
32
|
"prepack": "backstage-cli package prepack",
|
|
@@ -34,18 +35,20 @@
|
|
|
34
35
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.14.1
|
|
38
|
-
"@backstage/
|
|
39
|
-
"@backstage/catalog-
|
|
38
|
+
"@backstage/backend-common": "^0.14.1",
|
|
39
|
+
"@backstage/backend-plugin-api": "^0.1.0",
|
|
40
|
+
"@backstage/catalog-client": "^1.0.4",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.0",
|
|
40
42
|
"@backstage/config": "^1.0.1",
|
|
41
|
-
"@backstage/errors": "^1.1.0
|
|
42
|
-
"@backstage/integration": "^1.2.2
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.
|
|
44
|
-
"@backstage/plugin-
|
|
43
|
+
"@backstage/errors": "^1.1.0",
|
|
44
|
+
"@backstage/integration": "^1.2.2",
|
|
45
|
+
"@backstage/plugin-catalog-backend": "^1.3.0",
|
|
46
|
+
"@backstage/plugin-catalog-node": "^1.0.0",
|
|
47
|
+
"@backstage/plugin-scaffolder-common": "^1.1.2",
|
|
45
48
|
"@backstage/types": "^1.0.0",
|
|
46
49
|
"@gitbeaker/core": "^35.6.0",
|
|
47
50
|
"@gitbeaker/node": "^35.1.0",
|
|
48
|
-
"@octokit/webhooks": "^
|
|
51
|
+
"@octokit/webhooks": "^10.0.0",
|
|
49
52
|
"@types/express": "^4.17.6",
|
|
50
53
|
"azure-devops-node-api": "^11.0.1",
|
|
51
54
|
"command-exists": "^1.2.9",
|
|
@@ -54,30 +57,30 @@
|
|
|
54
57
|
"express": "^4.17.1",
|
|
55
58
|
"express-promise-router": "^4.1.0",
|
|
56
59
|
"fs-extra": "10.1.0",
|
|
57
|
-
"git-url-parse": "^
|
|
60
|
+
"git-url-parse": "^12.0.0",
|
|
58
61
|
"globby": "^11.0.0",
|
|
59
62
|
"isbinaryfile": "^5.0.0",
|
|
60
63
|
"isomorphic-git": "^1.8.0",
|
|
61
64
|
"jsonschema": "^1.2.6",
|
|
62
|
-
"knex": "^
|
|
65
|
+
"knex": "^2.0.0",
|
|
63
66
|
"lodash": "^4.17.21",
|
|
64
|
-
"luxon": "^
|
|
67
|
+
"luxon": "^3.0.0",
|
|
65
68
|
"morgan": "^1.10.0",
|
|
66
69
|
"node-fetch": "^2.6.7",
|
|
67
70
|
"nunjucks": "^3.2.3",
|
|
68
|
-
"octokit": "^
|
|
71
|
+
"octokit": "^2.0.0",
|
|
69
72
|
"octokit-plugin-create-pull-request": "^3.10.0",
|
|
70
73
|
"p-limit": "^3.1.0",
|
|
71
74
|
"uuid": "^8.2.0",
|
|
72
75
|
"vm2": "^3.9.6",
|
|
73
76
|
"winston": "^3.2.1",
|
|
74
|
-
"yaml": "^
|
|
77
|
+
"yaml": "^2.0.0",
|
|
75
78
|
"zen-observable": "^0.8.15",
|
|
76
79
|
"zod": "^3.11.6"
|
|
77
80
|
},
|
|
78
81
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-test-utils": "^0.1.26
|
|
80
|
-
"@backstage/cli": "^0.18.0
|
|
82
|
+
"@backstage/backend-test-utils": "^0.1.26",
|
|
83
|
+
"@backstage/cli": "^0.18.0",
|
|
81
84
|
"@types/command-exists": "^1.2.0",
|
|
82
85
|
"@types/fs-extra": "^9.0.1",
|
|
83
86
|
"@types/git-url-parse": "^9.0.0",
|
|
@@ -88,16 +91,17 @@
|
|
|
88
91
|
"esbuild": "^0.14.1",
|
|
89
92
|
"jest-when": "^3.1.0",
|
|
90
93
|
"mock-fs": "^5.1.0",
|
|
91
|
-
"msw": "^0.
|
|
94
|
+
"msw": "^0.44.0",
|
|
92
95
|
"supertest": "^6.1.3",
|
|
93
|
-
"yaml": "^
|
|
96
|
+
"yaml": "^2.0.0"
|
|
94
97
|
},
|
|
95
98
|
"files": [
|
|
99
|
+
"alpha",
|
|
96
100
|
"dist",
|
|
97
101
|
"migrations",
|
|
98
102
|
"config.d.ts",
|
|
99
103
|
"assets"
|
|
100
104
|
],
|
|
101
105
|
"configSchema": "config.d.ts",
|
|
102
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
|
|
103
107
|
}
|