@techdocs/cli 0.0.0-nightly-20251113024512 → 0.0.0-nightly-20251115023920
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,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20251115023920
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- c2a2017: Fix for missing styles due to move to BUI.
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
10
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
11
|
-
- @backstage/config@0.0.0-nightly-
|
|
12
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
9
|
+
- @backstage/backend-defaults@0.0.0-nightly-20251115023920
|
|
10
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20251115023920
|
|
11
|
+
- @backstage/config@0.0.0-nightly-20251115023920
|
|
12
|
+
- @backstage/catalog-model@0.0.0-nightly-20251115023920
|
|
13
13
|
- @backstage/cli-common@0.1.15
|
|
14
14
|
|
|
15
15
|
## 1.10.1-next.0
|
|
@@ -404,6 +404,67 @@
|
|
|
404
404
|
},
|
|
405
405
|
"packageName": "@backstage/core-components"
|
|
406
406
|
},
|
|
407
|
+
{
|
|
408
|
+
"path": "../../plugins/techdocs/config.d.ts",
|
|
409
|
+
"value": {
|
|
410
|
+
"type": "object",
|
|
411
|
+
"properties": {
|
|
412
|
+
"techdocs": {
|
|
413
|
+
"description": "Configuration options for the techdocs plugin",
|
|
414
|
+
"type": "object",
|
|
415
|
+
"properties": {
|
|
416
|
+
"builder": {
|
|
417
|
+
"description": "Documentation building process depends on the builder attr",
|
|
418
|
+
"visibility": "frontend",
|
|
419
|
+
"enum": [
|
|
420
|
+
"external",
|
|
421
|
+
"local"
|
|
422
|
+
],
|
|
423
|
+
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
"legacyUseCaseSensitiveTripletPaths": {
|
|
426
|
+
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
427
|
+
"visibility": "frontend",
|
|
428
|
+
"type": "boolean"
|
|
429
|
+
},
|
|
430
|
+
"sanitizer": {
|
|
431
|
+
"type": "object",
|
|
432
|
+
"properties": {
|
|
433
|
+
"allowedIframeHosts": {
|
|
434
|
+
"description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
|
|
435
|
+
"visibility": "frontend",
|
|
436
|
+
"type": "array",
|
|
437
|
+
"items": {
|
|
438
|
+
"type": "string"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"allowedCustomElementTagNameRegExp": {
|
|
442
|
+
"description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
|
|
443
|
+
"visibility": "frontend",
|
|
444
|
+
"type": "string"
|
|
445
|
+
},
|
|
446
|
+
"allowedCustomElementAttributeNameRegExp": {
|
|
447
|
+
"description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
|
|
448
|
+
"visibility": "frontend",
|
|
449
|
+
"type": "string"
|
|
450
|
+
},
|
|
451
|
+
"additionalAllowedURIProtocols": {
|
|
452
|
+
"description": "Allows listed protocols in attributes with URI values\nExample:\n additionalAllowedURIProtocols: ['vscode']\n this will allow all attributes with URI values to have `vscode` protocol like `vscode://some/path` in addition to the default protocols\n matched by DOMPurify's IS_ALLOWED_URI RegExp:",
|
|
453
|
+
"visibility": "frontend",
|
|
454
|
+
"type": "string"
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"required": [
|
|
462
|
+
"techdocs"
|
|
463
|
+
],
|
|
464
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
465
|
+
},
|
|
466
|
+
"packageName": "@backstage/plugin-techdocs"
|
|
467
|
+
},
|
|
407
468
|
{
|
|
408
469
|
"path": "../integration/config.d.ts",
|
|
409
470
|
"value": {
|
|
@@ -1164,67 +1225,6 @@
|
|
|
1164
1225
|
},
|
|
1165
1226
|
"packageName": "@backstage/frontend-app-api"
|
|
1166
1227
|
},
|
|
1167
|
-
{
|
|
1168
|
-
"path": "../../plugins/techdocs/config.d.ts",
|
|
1169
|
-
"value": {
|
|
1170
|
-
"type": "object",
|
|
1171
|
-
"properties": {
|
|
1172
|
-
"techdocs": {
|
|
1173
|
-
"description": "Configuration options for the techdocs plugin",
|
|
1174
|
-
"type": "object",
|
|
1175
|
-
"properties": {
|
|
1176
|
-
"builder": {
|
|
1177
|
-
"description": "Documentation building process depends on the builder attr",
|
|
1178
|
-
"visibility": "frontend",
|
|
1179
|
-
"enum": [
|
|
1180
|
-
"external",
|
|
1181
|
-
"local"
|
|
1182
|
-
],
|
|
1183
|
-
"type": "string"
|
|
1184
|
-
},
|
|
1185
|
-
"legacyUseCaseSensitiveTripletPaths": {
|
|
1186
|
-
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
1187
|
-
"visibility": "frontend",
|
|
1188
|
-
"type": "boolean"
|
|
1189
|
-
},
|
|
1190
|
-
"sanitizer": {
|
|
1191
|
-
"type": "object",
|
|
1192
|
-
"properties": {
|
|
1193
|
-
"allowedIframeHosts": {
|
|
1194
|
-
"description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
|
|
1195
|
-
"visibility": "frontend",
|
|
1196
|
-
"type": "array",
|
|
1197
|
-
"items": {
|
|
1198
|
-
"type": "string"
|
|
1199
|
-
}
|
|
1200
|
-
},
|
|
1201
|
-
"allowedCustomElementTagNameRegExp": {
|
|
1202
|
-
"description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
|
|
1203
|
-
"visibility": "frontend",
|
|
1204
|
-
"type": "string"
|
|
1205
|
-
},
|
|
1206
|
-
"allowedCustomElementAttributeNameRegExp": {
|
|
1207
|
-
"description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
|
|
1208
|
-
"visibility": "frontend",
|
|
1209
|
-
"type": "string"
|
|
1210
|
-
},
|
|
1211
|
-
"additionalAllowedURIProtocols": {
|
|
1212
|
-
"description": "Allows listed protocols in attributes with URI values\nExample:\n additionalAllowedURIProtocols: ['vscode']\n this will allow all attributes with URI values to have `vscode` protocol like `vscode://some/path` in addition to the default protocols\n matched by DOMPurify's IS_ALLOWED_URI RegExp:",
|
|
1213
|
-
"visibility": "frontend",
|
|
1214
|
-
"type": "string"
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
}
|
|
1218
|
-
}
|
|
1219
|
-
}
|
|
1220
|
-
},
|
|
1221
|
-
"required": [
|
|
1222
|
-
"techdocs"
|
|
1223
|
-
],
|
|
1224
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1225
|
-
},
|
|
1226
|
-
"packageName": "@backstage/plugin-techdocs"
|
|
1227
|
-
},
|
|
1228
1228
|
{
|
|
1229
1229
|
"path": "../../plugins/catalog/config.d.ts",
|
|
1230
1230
|
"value": {
|
package/dist/package.json.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techdocs/cli",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20251115023920",
|
|
4
4
|
"description": "Utility CLI for managing TechDocs sites in Backstage.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"watch": "./src"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-defaults": "0.0.0-nightly-
|
|
48
|
-
"@backstage/catalog-model": "0.0.0-nightly-
|
|
47
|
+
"@backstage/backend-defaults": "0.0.0-nightly-20251115023920",
|
|
48
|
+
"@backstage/catalog-model": "0.0.0-nightly-20251115023920",
|
|
49
49
|
"@backstage/cli-common": "0.1.15",
|
|
50
|
-
"@backstage/config": "0.0.0-nightly-
|
|
51
|
-
"@backstage/plugin-techdocs-node": "0.0.0-nightly-
|
|
50
|
+
"@backstage/config": "0.0.0-nightly-20251115023920",
|
|
51
|
+
"@backstage/plugin-techdocs-node": "0.0.0-nightly-20251115023920",
|
|
52
52
|
"commander": "^12.0.0",
|
|
53
53
|
"fs-extra": "^11.0.0",
|
|
54
54
|
"global-agent": "^3.0.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"winston": "^3.2.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
61
|
+
"@backstage/cli": "0.0.0-nightly-20251115023920",
|
|
62
62
|
"@types/commander": "^2.12.2",
|
|
63
63
|
"@types/fs-extra": "^11.0.0",
|
|
64
64
|
"@types/http-proxy": "^1.17.4",
|