@techdocs/cli 0.0.0-nightly-20251213024329 → 0.0.0-nightly-20251216024726
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 +4 -4
- package/dist/embedded-app/.config-schema.json +105 -118
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/main.91f3671b.js +550 -0
- package/dist/embedded-app/static/main.91f3671b.js.map +1 -0
- package/dist/package.json.cjs.js +1 -1
- package/package.json +5 -5
- package/dist/embedded-app/static/main.d92cf3b9.js +0 -550
- package/dist/embedded-app/static/main.d92cf3b9.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20251216024726
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 43629b1: Updated to use new utilities from `@backstage/cli-common`.
|
|
8
8
|
- 2bae83a: Bumped dev dependencies `@types/node`
|
|
9
9
|
- Updated dependencies
|
|
10
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
11
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
12
|
-
- @backstage/cli-common@0.0.0-nightly-
|
|
10
|
+
- @backstage/backend-defaults@0.0.0-nightly-20251216024726
|
|
11
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20251216024726
|
|
12
|
+
- @backstage/cli-common@0.0.0-nightly-20251216024726
|
|
13
13
|
- @backstage/catalog-model@1.7.6
|
|
14
14
|
- @backstage/config@1.3.6
|
|
15
15
|
|
|
@@ -451,7 +451,10 @@
|
|
|
451
451
|
"additionalAllowedURIProtocols": {
|
|
452
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
453
|
"visibility": "frontend",
|
|
454
|
-
"type": "
|
|
454
|
+
"type": "array",
|
|
455
|
+
"items": {
|
|
456
|
+
"type": "string"
|
|
457
|
+
}
|
|
455
458
|
}
|
|
456
459
|
}
|
|
457
460
|
}
|
|
@@ -1482,105 +1485,6 @@
|
|
|
1482
1485
|
},
|
|
1483
1486
|
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1484
1487
|
},
|
|
1485
|
-
{
|
|
1486
|
-
"path": "../backend-app-api/config.d.ts",
|
|
1487
|
-
"value": {
|
|
1488
|
-
"type": "object",
|
|
1489
|
-
"properties": {
|
|
1490
|
-
"backend": {
|
|
1491
|
-
"type": "object",
|
|
1492
|
-
"properties": {
|
|
1493
|
-
"packages": {
|
|
1494
|
-
"description": "Used by the feature discovery service",
|
|
1495
|
-
"anyOf": [
|
|
1496
|
-
{
|
|
1497
|
-
"type": "object",
|
|
1498
|
-
"properties": {
|
|
1499
|
-
"include": {
|
|
1500
|
-
"type": "array",
|
|
1501
|
-
"items": {
|
|
1502
|
-
"type": "string"
|
|
1503
|
-
}
|
|
1504
|
-
},
|
|
1505
|
-
"exclude": {
|
|
1506
|
-
"type": "array",
|
|
1507
|
-
"items": {
|
|
1508
|
-
"type": "string"
|
|
1509
|
-
}
|
|
1510
|
-
}
|
|
1511
|
-
}
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
"const": "all",
|
|
1515
|
-
"type": "string"
|
|
1516
|
-
}
|
|
1517
|
-
]
|
|
1518
|
-
},
|
|
1519
|
-
"startup": {
|
|
1520
|
-
"type": "object",
|
|
1521
|
-
"properties": {
|
|
1522
|
-
"default": {
|
|
1523
|
-
"type": "object",
|
|
1524
|
-
"properties": {
|
|
1525
|
-
"onPluginBootFailure": {
|
|
1526
|
-
"description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
|
|
1527
|
-
"enum": [
|
|
1528
|
-
"abort",
|
|
1529
|
-
"continue"
|
|
1530
|
-
],
|
|
1531
|
-
"type": "string"
|
|
1532
|
-
},
|
|
1533
|
-
"onPluginModuleBootFailure": {
|
|
1534
|
-
"description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
|
|
1535
|
-
"enum": [
|
|
1536
|
-
"abort",
|
|
1537
|
-
"continue"
|
|
1538
|
-
],
|
|
1539
|
-
"type": "string"
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
},
|
|
1543
|
-
"plugins": {
|
|
1544
|
-
"type": "object",
|
|
1545
|
-
"additionalProperties": {
|
|
1546
|
-
"type": "object",
|
|
1547
|
-
"properties": {
|
|
1548
|
-
"onPluginBootFailure": {
|
|
1549
|
-
"description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
|
|
1550
|
-
"enum": [
|
|
1551
|
-
"abort",
|
|
1552
|
-
"continue"
|
|
1553
|
-
],
|
|
1554
|
-
"type": "string"
|
|
1555
|
-
},
|
|
1556
|
-
"modules": {
|
|
1557
|
-
"type": "object",
|
|
1558
|
-
"additionalProperties": {
|
|
1559
|
-
"type": "object",
|
|
1560
|
-
"properties": {
|
|
1561
|
-
"onPluginModuleBootFailure": {
|
|
1562
|
-
"description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
|
|
1563
|
-
"enum": [
|
|
1564
|
-
"abort",
|
|
1565
|
-
"continue"
|
|
1566
|
-
],
|
|
1567
|
-
"type": "string"
|
|
1568
|
-
}
|
|
1569
|
-
}
|
|
1570
|
-
}
|
|
1571
|
-
}
|
|
1572
|
-
}
|
|
1573
|
-
}
|
|
1574
|
-
}
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
}
|
|
1578
|
-
}
|
|
1579
|
-
},
|
|
1580
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1581
|
-
},
|
|
1582
|
-
"packageName": "@backstage/backend-app-api"
|
|
1583
|
-
},
|
|
1584
1488
|
{
|
|
1585
1489
|
"path": "../backend-defaults/config.d.ts",
|
|
1586
1490
|
"value": {
|
|
@@ -2475,25 +2379,9 @@
|
|
|
2475
2379
|
"description": "An optional Valkey client configuration. These options are passed to the `@keyv/valkey` client.",
|
|
2476
2380
|
"type": "object",
|
|
2477
2381
|
"properties": {
|
|
2478
|
-
"
|
|
2479
|
-
"description": "Namespace for
|
|
2480
|
-
"type": "string"
|
|
2481
|
-
},
|
|
2482
|
-
"keyPrefixSeparator": {
|
|
2483
|
-
"description": "Separator to use between namespace and key.",
|
|
2382
|
+
"keyPrefix": {
|
|
2383
|
+
"description": "Namespace and separator used for prefixing keys.",
|
|
2484
2384
|
"type": "string"
|
|
2485
|
-
},
|
|
2486
|
-
"clearBatchSize": {
|
|
2487
|
-
"description": "Number of keys to delete in a single batch.",
|
|
2488
|
-
"type": "number"
|
|
2489
|
-
},
|
|
2490
|
-
"useUnlink": {
|
|
2491
|
-
"description": "Enable Unlink instead of using Del for clearing keys. This is more performant but may not be supported by all Redis versions.",
|
|
2492
|
-
"type": "boolean"
|
|
2493
|
-
},
|
|
2494
|
-
"noNamespaceAffectsAll": {
|
|
2495
|
-
"description": "Whether to allow clearing all keys when no namespace is set.\nIf set to true and no namespace is set, iterate() will return all keys.\nDefaults to `false`.",
|
|
2496
|
-
"type": "boolean"
|
|
2497
2385
|
}
|
|
2498
2386
|
}
|
|
2499
2387
|
},
|
|
@@ -3168,6 +3056,105 @@
|
|
|
3168
3056
|
},
|
|
3169
3057
|
"packageName": "@backstage/backend-defaults"
|
|
3170
3058
|
},
|
|
3059
|
+
{
|
|
3060
|
+
"path": "../backend-app-api/config.d.ts",
|
|
3061
|
+
"value": {
|
|
3062
|
+
"type": "object",
|
|
3063
|
+
"properties": {
|
|
3064
|
+
"backend": {
|
|
3065
|
+
"type": "object",
|
|
3066
|
+
"properties": {
|
|
3067
|
+
"packages": {
|
|
3068
|
+
"description": "Used by the feature discovery service",
|
|
3069
|
+
"anyOf": [
|
|
3070
|
+
{
|
|
3071
|
+
"type": "object",
|
|
3072
|
+
"properties": {
|
|
3073
|
+
"include": {
|
|
3074
|
+
"type": "array",
|
|
3075
|
+
"items": {
|
|
3076
|
+
"type": "string"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
"exclude": {
|
|
3080
|
+
"type": "array",
|
|
3081
|
+
"items": {
|
|
3082
|
+
"type": "string"
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
{
|
|
3088
|
+
"const": "all",
|
|
3089
|
+
"type": "string"
|
|
3090
|
+
}
|
|
3091
|
+
]
|
|
3092
|
+
},
|
|
3093
|
+
"startup": {
|
|
3094
|
+
"type": "object",
|
|
3095
|
+
"properties": {
|
|
3096
|
+
"default": {
|
|
3097
|
+
"type": "object",
|
|
3098
|
+
"properties": {
|
|
3099
|
+
"onPluginBootFailure": {
|
|
3100
|
+
"description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
|
|
3101
|
+
"enum": [
|
|
3102
|
+
"abort",
|
|
3103
|
+
"continue"
|
|
3104
|
+
],
|
|
3105
|
+
"type": "string"
|
|
3106
|
+
},
|
|
3107
|
+
"onPluginModuleBootFailure": {
|
|
3108
|
+
"description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
|
|
3109
|
+
"enum": [
|
|
3110
|
+
"abort",
|
|
3111
|
+
"continue"
|
|
3112
|
+
],
|
|
3113
|
+
"type": "string"
|
|
3114
|
+
}
|
|
3115
|
+
}
|
|
3116
|
+
},
|
|
3117
|
+
"plugins": {
|
|
3118
|
+
"type": "object",
|
|
3119
|
+
"additionalProperties": {
|
|
3120
|
+
"type": "object",
|
|
3121
|
+
"properties": {
|
|
3122
|
+
"onPluginBootFailure": {
|
|
3123
|
+
"description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
|
|
3124
|
+
"enum": [
|
|
3125
|
+
"abort",
|
|
3126
|
+
"continue"
|
|
3127
|
+
],
|
|
3128
|
+
"type": "string"
|
|
3129
|
+
},
|
|
3130
|
+
"modules": {
|
|
3131
|
+
"type": "object",
|
|
3132
|
+
"additionalProperties": {
|
|
3133
|
+
"type": "object",
|
|
3134
|
+
"properties": {
|
|
3135
|
+
"onPluginModuleBootFailure": {
|
|
3136
|
+
"description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
|
|
3137
|
+
"enum": [
|
|
3138
|
+
"abort",
|
|
3139
|
+
"continue"
|
|
3140
|
+
],
|
|
3141
|
+
"type": "string"
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
}
|
|
3152
|
+
}
|
|
3153
|
+
},
|
|
3154
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3155
|
+
},
|
|
3156
|
+
"packageName": "@backstage/backend-app-api"
|
|
3157
|
+
},
|
|
3171
3158
|
{
|
|
3172
3159
|
"path": "../../plugins/events-node/config.d.ts",
|
|
3173
3160
|
"value": {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="color-scheme" content="light dark"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.0a0ee1fa.js"></script><script defer="defer" src="/static/module-material-ui.bc72d455.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.09813bc2.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.2d7d5373.js"></script><script defer="defer" src="/static/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="color-scheme" content="light dark"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.0a0ee1fa.js"></script><script defer="defer" src="/static/module-material-ui.bc72d455.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.09813bc2.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.2d7d5373.js"></script><script defer="defer" src="/static/main.91f3671b.js"></script><link href="/static/main.5f8bd308.css" rel="stylesheet"><script type="backstage.io/config">[
|
|
2
2
|
{
|
|
3
3
|
"context": "app-config.yaml",
|
|
4
4
|
"data": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
color="#5bbad5"
|
|
44
44
|
/>
|
|
45
45
|
<title><%= config.getString('app.title') %></title>
|
|
46
|
-
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.0a0ee1fa.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.bc72d455.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.09813bc2.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.2d7d5373.js"></script><script defer src="<%= publicPath %>/static/main.
|
|
46
|
+
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.0a0ee1fa.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.bc72d455.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.09813bc2.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.2d7d5373.js"></script><script defer src="<%= publicPath %>/static/main.91f3671b.js"></script><link href="<%= publicPath %>/static/main.5f8bd308.css" rel="stylesheet"></head>
|
|
47
47
|
<body>
|
|
48
48
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
49
49
|
<div id="root"></div>
|