@backstage/plugin-techdocs-node 1.12.5-next.2 → 1.12.5
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 +33 -0
- package/dist/index.cjs.js +88 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -2
- package/package.json +16 -8
package/dist/index.d.ts
CHANGED
|
@@ -142,8 +142,12 @@ declare const getDocFilesFromRepository: (reader: UrlReader, entity: Entity, opt
|
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
144
|
type GeneratorOptions = {
|
|
145
|
-
containerRunner?: ContainerRunner;
|
|
146
145
|
logger: Logger;
|
|
146
|
+
/**
|
|
147
|
+
* @deprecated containerRunner is now instantiated in
|
|
148
|
+
* the generator and this option will be removed in the future
|
|
149
|
+
*/
|
|
150
|
+
containerRunner?: ContainerRunner;
|
|
147
151
|
};
|
|
148
152
|
/**
|
|
149
153
|
* The values that the generator will receive.
|
|
@@ -237,7 +241,7 @@ declare class Generators implements GeneratorBuilder {
|
|
|
237
241
|
*/
|
|
238
242
|
static fromConfig(config: Config, options: {
|
|
239
243
|
logger: Logger;
|
|
240
|
-
containerRunner
|
|
244
|
+
containerRunner?: ContainerRunner;
|
|
241
245
|
customGenerator?: TechdocsGenerator;
|
|
242
246
|
}): Promise<GeneratorBuilder>;
|
|
243
247
|
/**
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-node",
|
|
3
|
-
"version": "1.12.5
|
|
3
|
+
"version": "1.12.5",
|
|
4
4
|
"description": "Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli",
|
|
5
5
|
"backstage": {
|
|
6
|
-
"role": "node-library"
|
|
6
|
+
"role": "node-library",
|
|
7
|
+
"pluginId": "techdocs",
|
|
8
|
+
"pluginPackages": [
|
|
9
|
+
"@backstage/plugin-techdocs",
|
|
10
|
+
"@backstage/plugin-techdocs-backend",
|
|
11
|
+
"@backstage/plugin-techdocs-node",
|
|
12
|
+
"@backstage/plugin-techdocs-react"
|
|
13
|
+
]
|
|
7
14
|
},
|
|
8
15
|
"publishConfig": {
|
|
9
16
|
"access": "public",
|
|
@@ -45,18 +52,19 @@
|
|
|
45
52
|
"@aws-sdk/types": "^3.347.0",
|
|
46
53
|
"@azure/identity": "^4.0.0",
|
|
47
54
|
"@azure/storage-blob": "^12.5.0",
|
|
48
|
-
"@backstage/backend-common": "^0.23.0
|
|
49
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
55
|
+
"@backstage/backend-common": "^0.23.0",
|
|
56
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
50
57
|
"@backstage/catalog-model": "^1.5.0",
|
|
51
58
|
"@backstage/config": "^1.2.0",
|
|
52
59
|
"@backstage/errors": "^1.2.4",
|
|
53
|
-
"@backstage/integration": "^1.12.0
|
|
60
|
+
"@backstage/integration": "^1.12.0",
|
|
54
61
|
"@backstage/integration-aws-node": "^0.1.12",
|
|
55
|
-
"@backstage/plugin-search-common": "^1.2.
|
|
62
|
+
"@backstage/plugin-search-common": "^1.2.12",
|
|
56
63
|
"@google-cloud/storage": "^7.0.0",
|
|
57
64
|
"@smithy/node-http-handler": "^2.1.7",
|
|
58
65
|
"@trendyol-js/openstack-swift-sdk": "^0.0.7",
|
|
59
66
|
"@types/express": "^4.17.6",
|
|
67
|
+
"dockerode": "^4.0.0",
|
|
60
68
|
"express": "^4.17.1",
|
|
61
69
|
"fs-extra": "^11.2.0",
|
|
62
70
|
"git-url-parse": "^14.0.0",
|
|
@@ -69,8 +77,8 @@
|
|
|
69
77
|
"winston": "^3.2.1"
|
|
70
78
|
},
|
|
71
79
|
"devDependencies": {
|
|
72
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
73
|
-
"@backstage/cli": "^0.26.7
|
|
80
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
81
|
+
"@backstage/cli": "^0.26.7",
|
|
74
82
|
"@types/fs-extra": "^11.0.0",
|
|
75
83
|
"@types/js-yaml": "^4.0.0",
|
|
76
84
|
"@types/mime-types": "^2.1.0",
|