@techdocs/cli 0.0.0-nightly-20241215023758 → 0.0.0-nightly-20241217023754
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 +5 -5
- package/dist/embedded-app/.config-schema.json +221 -221
- package/dist/package.json.cjs.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20241217023754
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
9
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
10
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
8
|
+
- @backstage/backend-defaults@0.0.0-nightly-20241217023754
|
|
9
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20241217023754
|
|
10
|
+
- @backstage/catalog-model@0.0.0-nightly-20241217023754
|
|
11
11
|
- @backstage/cli-common@0.1.15
|
|
12
|
-
- @backstage/config@0.0.0-nightly-
|
|
12
|
+
- @backstage/config@0.0.0-nightly-20241217023754
|
|
13
13
|
|
|
14
14
|
## 1.8.24-next.2
|
|
15
15
|
|
|
@@ -454,6 +454,118 @@
|
|
|
454
454
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
455
455
|
}
|
|
456
456
|
},
|
|
457
|
+
{
|
|
458
|
+
"path": "../frontend-app-api/config.d.ts",
|
|
459
|
+
"value": {
|
|
460
|
+
"type": "object",
|
|
461
|
+
"properties": {
|
|
462
|
+
"app": {
|
|
463
|
+
"type": "object",
|
|
464
|
+
"properties": {
|
|
465
|
+
"experimental": {
|
|
466
|
+
"type": "object",
|
|
467
|
+
"properties": {
|
|
468
|
+
"packages": {
|
|
469
|
+
"visibility": "frontend",
|
|
470
|
+
"deepVisibility": "frontend",
|
|
471
|
+
"anyOf": [
|
|
472
|
+
{
|
|
473
|
+
"type": "object",
|
|
474
|
+
"properties": {
|
|
475
|
+
"include": {
|
|
476
|
+
"type": "array",
|
|
477
|
+
"items": {
|
|
478
|
+
"type": "string"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"exclude": {
|
|
482
|
+
"type": "array",
|
|
483
|
+
"items": {
|
|
484
|
+
"type": "string"
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"const": "all",
|
|
491
|
+
"type": "string"
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"routes": {
|
|
498
|
+
"type": "object",
|
|
499
|
+
"properties": {
|
|
500
|
+
"bindings": {
|
|
501
|
+
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
502
|
+
"deepVisibility": "frontend",
|
|
503
|
+
"type": "object",
|
|
504
|
+
"additionalProperties": {
|
|
505
|
+
"anyOf": [
|
|
506
|
+
{
|
|
507
|
+
"const": false,
|
|
508
|
+
"type": "boolean"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"type": "string"
|
|
512
|
+
}
|
|
513
|
+
]
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"extensions": {
|
|
519
|
+
"deepVisibility": "frontend",
|
|
520
|
+
"type": "array",
|
|
521
|
+
"items": {
|
|
522
|
+
"anyOf": [
|
|
523
|
+
{
|
|
524
|
+
"type": "object",
|
|
525
|
+
"additionalProperties": {
|
|
526
|
+
"anyOf": [
|
|
527
|
+
{
|
|
528
|
+
"type": "object",
|
|
529
|
+
"properties": {
|
|
530
|
+
"attachTo": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"id": {
|
|
534
|
+
"type": "string"
|
|
535
|
+
},
|
|
536
|
+
"input": {
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"required": [
|
|
541
|
+
"id",
|
|
542
|
+
"input"
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
"disabled": {
|
|
546
|
+
"type": "boolean"
|
|
547
|
+
},
|
|
548
|
+
"config": {}
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "boolean"
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"type": "string"
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
457
569
|
{
|
|
458
570
|
"path": "../integration/config.d.ts",
|
|
459
571
|
"value": {
|
|
@@ -899,118 +1011,6 @@
|
|
|
899
1011
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
900
1012
|
}
|
|
901
1013
|
},
|
|
902
|
-
{
|
|
903
|
-
"path": "../frontend-app-api/config.d.ts",
|
|
904
|
-
"value": {
|
|
905
|
-
"type": "object",
|
|
906
|
-
"properties": {
|
|
907
|
-
"app": {
|
|
908
|
-
"type": "object",
|
|
909
|
-
"properties": {
|
|
910
|
-
"experimental": {
|
|
911
|
-
"type": "object",
|
|
912
|
-
"properties": {
|
|
913
|
-
"packages": {
|
|
914
|
-
"visibility": "frontend",
|
|
915
|
-
"deepVisibility": "frontend",
|
|
916
|
-
"anyOf": [
|
|
917
|
-
{
|
|
918
|
-
"type": "object",
|
|
919
|
-
"properties": {
|
|
920
|
-
"include": {
|
|
921
|
-
"type": "array",
|
|
922
|
-
"items": {
|
|
923
|
-
"type": "string"
|
|
924
|
-
}
|
|
925
|
-
},
|
|
926
|
-
"exclude": {
|
|
927
|
-
"type": "array",
|
|
928
|
-
"items": {
|
|
929
|
-
"type": "string"
|
|
930
|
-
}
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
"const": "all",
|
|
936
|
-
"type": "string"
|
|
937
|
-
}
|
|
938
|
-
]
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
},
|
|
942
|
-
"routes": {
|
|
943
|
-
"type": "object",
|
|
944
|
-
"properties": {
|
|
945
|
-
"bindings": {
|
|
946
|
-
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
947
|
-
"deepVisibility": "frontend",
|
|
948
|
-
"type": "object",
|
|
949
|
-
"additionalProperties": {
|
|
950
|
-
"anyOf": [
|
|
951
|
-
{
|
|
952
|
-
"const": false,
|
|
953
|
-
"type": "boolean"
|
|
954
|
-
},
|
|
955
|
-
{
|
|
956
|
-
"type": "string"
|
|
957
|
-
}
|
|
958
|
-
]
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
"extensions": {
|
|
964
|
-
"deepVisibility": "frontend",
|
|
965
|
-
"type": "array",
|
|
966
|
-
"items": {
|
|
967
|
-
"anyOf": [
|
|
968
|
-
{
|
|
969
|
-
"type": "object",
|
|
970
|
-
"additionalProperties": {
|
|
971
|
-
"anyOf": [
|
|
972
|
-
{
|
|
973
|
-
"type": "object",
|
|
974
|
-
"properties": {
|
|
975
|
-
"attachTo": {
|
|
976
|
-
"type": "object",
|
|
977
|
-
"properties": {
|
|
978
|
-
"id": {
|
|
979
|
-
"type": "string"
|
|
980
|
-
},
|
|
981
|
-
"input": {
|
|
982
|
-
"type": "string"
|
|
983
|
-
}
|
|
984
|
-
},
|
|
985
|
-
"required": [
|
|
986
|
-
"id",
|
|
987
|
-
"input"
|
|
988
|
-
]
|
|
989
|
-
},
|
|
990
|
-
"disabled": {
|
|
991
|
-
"type": "boolean"
|
|
992
|
-
},
|
|
993
|
-
"config": {}
|
|
994
|
-
}
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"type": "boolean"
|
|
998
|
-
}
|
|
999
|
-
]
|
|
1000
|
-
}
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"type": "string"
|
|
1004
|
-
}
|
|
1005
|
-
]
|
|
1006
|
-
}
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
},
|
|
1011
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1012
|
-
}
|
|
1013
|
-
},
|
|
1014
1014
|
{
|
|
1015
1015
|
"path": "../../plugins/catalog/config.d.ts",
|
|
1016
1016
|
"value": {
|
|
@@ -3735,6 +3735,52 @@
|
|
|
3735
3735
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3736
3736
|
}
|
|
3737
3737
|
},
|
|
3738
|
+
{
|
|
3739
|
+
"path": "../../plugins/auth-backend-module-bitbucket-server-provider/config.d.ts",
|
|
3740
|
+
"value": {
|
|
3741
|
+
"type": "object",
|
|
3742
|
+
"properties": {
|
|
3743
|
+
"auth": {
|
|
3744
|
+
"type": "object",
|
|
3745
|
+
"properties": {
|
|
3746
|
+
"providers": {
|
|
3747
|
+
"type": "object",
|
|
3748
|
+
"properties": {
|
|
3749
|
+
"bitbucketServer": {
|
|
3750
|
+
"visibility": "frontend",
|
|
3751
|
+
"type": "object",
|
|
3752
|
+
"additionalProperties": {
|
|
3753
|
+
"type": "object",
|
|
3754
|
+
"properties": {
|
|
3755
|
+
"clientId": {
|
|
3756
|
+
"type": "string"
|
|
3757
|
+
},
|
|
3758
|
+
"clientSecret": {
|
|
3759
|
+
"visibility": "secret",
|
|
3760
|
+
"type": "string"
|
|
3761
|
+
},
|
|
3762
|
+
"host": {
|
|
3763
|
+
"type": "string"
|
|
3764
|
+
},
|
|
3765
|
+
"callbackUrl": {
|
|
3766
|
+
"type": "string"
|
|
3767
|
+
}
|
|
3768
|
+
},
|
|
3769
|
+
"required": [
|
|
3770
|
+
"clientId",
|
|
3771
|
+
"clientSecret",
|
|
3772
|
+
"host"
|
|
3773
|
+
]
|
|
3774
|
+
}
|
|
3775
|
+
}
|
|
3776
|
+
}
|
|
3777
|
+
}
|
|
3778
|
+
}
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3781
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3782
|
+
}
|
|
3783
|
+
},
|
|
3738
3784
|
{
|
|
3739
3785
|
"path": "../../plugins/auth-backend-module-bitbucket-provider/config.d.ts",
|
|
3740
3786
|
"value": {
|
|
@@ -3845,53 +3891,7 @@
|
|
|
3845
3891
|
}
|
|
3846
3892
|
},
|
|
3847
3893
|
{
|
|
3848
|
-
"path": "../../plugins/auth-backend-module-
|
|
3849
|
-
"value": {
|
|
3850
|
-
"type": "object",
|
|
3851
|
-
"properties": {
|
|
3852
|
-
"auth": {
|
|
3853
|
-
"type": "object",
|
|
3854
|
-
"properties": {
|
|
3855
|
-
"providers": {
|
|
3856
|
-
"type": "object",
|
|
3857
|
-
"properties": {
|
|
3858
|
-
"bitbucketServer": {
|
|
3859
|
-
"visibility": "frontend",
|
|
3860
|
-
"type": "object",
|
|
3861
|
-
"additionalProperties": {
|
|
3862
|
-
"type": "object",
|
|
3863
|
-
"properties": {
|
|
3864
|
-
"clientId": {
|
|
3865
|
-
"type": "string"
|
|
3866
|
-
},
|
|
3867
|
-
"clientSecret": {
|
|
3868
|
-
"visibility": "secret",
|
|
3869
|
-
"type": "string"
|
|
3870
|
-
},
|
|
3871
|
-
"host": {
|
|
3872
|
-
"type": "string"
|
|
3873
|
-
},
|
|
3874
|
-
"callbackUrl": {
|
|
3875
|
-
"type": "string"
|
|
3876
|
-
}
|
|
3877
|
-
},
|
|
3878
|
-
"required": [
|
|
3879
|
-
"clientId",
|
|
3880
|
-
"clientSecret",
|
|
3881
|
-
"host"
|
|
3882
|
-
]
|
|
3883
|
-
}
|
|
3884
|
-
}
|
|
3885
|
-
}
|
|
3886
|
-
}
|
|
3887
|
-
}
|
|
3888
|
-
}
|
|
3889
|
-
},
|
|
3890
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3891
|
-
}
|
|
3892
|
-
},
|
|
3893
|
-
{
|
|
3894
|
-
"path": "../../plugins/auth-backend-module-cloudflare-access-provider/config.d.ts",
|
|
3894
|
+
"path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
|
|
3895
3895
|
"value": {
|
|
3896
3896
|
"type": "object",
|
|
3897
3897
|
"properties": {
|
|
@@ -3901,36 +3901,16 @@
|
|
|
3901
3901
|
"providers": {
|
|
3902
3902
|
"type": "object",
|
|
3903
3903
|
"properties": {
|
|
3904
|
-
"
|
|
3905
|
-
"
|
|
3904
|
+
"gcpIap": {
|
|
3905
|
+
"description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
|
|
3906
3906
|
"type": "object",
|
|
3907
3907
|
"properties": {
|
|
3908
|
-
"
|
|
3909
|
-
"
|
|
3910
|
-
},
|
|
3911
|
-
"serviceTokens": {
|
|
3912
|
-
"deepVisibility": "secret",
|
|
3913
|
-
"type": "array",
|
|
3914
|
-
"items": {
|
|
3915
|
-
"type": "object",
|
|
3916
|
-
"properties": {
|
|
3917
|
-
"token": {
|
|
3918
|
-
"type": "string"
|
|
3919
|
-
},
|
|
3920
|
-
"subject": {
|
|
3921
|
-
"type": "string"
|
|
3922
|
-
}
|
|
3923
|
-
},
|
|
3924
|
-
"required": [
|
|
3925
|
-
"subject",
|
|
3926
|
-
"token"
|
|
3927
|
-
]
|
|
3928
|
-
}
|
|
3929
|
-
},
|
|
3930
|
-
"jwtHeaderName": {
|
|
3908
|
+
"audience": {
|
|
3909
|
+
"description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
|
|
3931
3910
|
"type": "string"
|
|
3932
3911
|
},
|
|
3933
|
-
"
|
|
3912
|
+
"jwtHeader": {
|
|
3913
|
+
"description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
|
|
3934
3914
|
"type": "string"
|
|
3935
3915
|
},
|
|
3936
3916
|
"signIn": {
|
|
@@ -3940,6 +3920,30 @@
|
|
|
3940
3920
|
"type": "array",
|
|
3941
3921
|
"items": {
|
|
3942
3922
|
"anyOf": [
|
|
3923
|
+
{
|
|
3924
|
+
"type": "object",
|
|
3925
|
+
"properties": {
|
|
3926
|
+
"resolver": {
|
|
3927
|
+
"type": "string",
|
|
3928
|
+
"const": "emailMatchingUserEntityAnnotation"
|
|
3929
|
+
}
|
|
3930
|
+
},
|
|
3931
|
+
"required": [
|
|
3932
|
+
"resolver"
|
|
3933
|
+
]
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
"type": "object",
|
|
3937
|
+
"properties": {
|
|
3938
|
+
"resolver": {
|
|
3939
|
+
"type": "string",
|
|
3940
|
+
"const": "idMatchingUserEntityAnnotation"
|
|
3941
|
+
}
|
|
3942
|
+
},
|
|
3943
|
+
"required": [
|
|
3944
|
+
"resolver"
|
|
3945
|
+
]
|
|
3946
|
+
},
|
|
3943
3947
|
{
|
|
3944
3948
|
"type": "object",
|
|
3945
3949
|
"properties": {
|
|
@@ -3980,11 +3984,8 @@
|
|
|
3980
3984
|
}
|
|
3981
3985
|
},
|
|
3982
3986
|
"required": [
|
|
3983
|
-
"
|
|
3987
|
+
"audience"
|
|
3984
3988
|
]
|
|
3985
|
-
},
|
|
3986
|
-
"backstageTokenExpiration": {
|
|
3987
|
-
"description": "The backstage token expiration."
|
|
3988
3989
|
}
|
|
3989
3990
|
}
|
|
3990
3991
|
}
|
|
@@ -3995,7 +3996,7 @@
|
|
|
3995
3996
|
}
|
|
3996
3997
|
},
|
|
3997
3998
|
{
|
|
3998
|
-
"path": "../../plugins/auth-backend-module-
|
|
3999
|
+
"path": "../../plugins/auth-backend-module-cloudflare-access-provider/config.d.ts",
|
|
3999
4000
|
"value": {
|
|
4000
4001
|
"type": "object",
|
|
4001
4002
|
"properties": {
|
|
@@ -4005,16 +4006,36 @@
|
|
|
4005
4006
|
"providers": {
|
|
4006
4007
|
"type": "object",
|
|
4007
4008
|
"properties": {
|
|
4008
|
-
"
|
|
4009
|
-
"
|
|
4009
|
+
"cfaccess": {
|
|
4010
|
+
"visibility": "frontend",
|
|
4010
4011
|
"type": "object",
|
|
4011
4012
|
"properties": {
|
|
4012
|
-
"
|
|
4013
|
-
"description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
|
|
4013
|
+
"teamName": {
|
|
4014
4014
|
"type": "string"
|
|
4015
4015
|
},
|
|
4016
|
-
"
|
|
4017
|
-
"
|
|
4016
|
+
"serviceTokens": {
|
|
4017
|
+
"deepVisibility": "secret",
|
|
4018
|
+
"type": "array",
|
|
4019
|
+
"items": {
|
|
4020
|
+
"type": "object",
|
|
4021
|
+
"properties": {
|
|
4022
|
+
"token": {
|
|
4023
|
+
"type": "string"
|
|
4024
|
+
},
|
|
4025
|
+
"subject": {
|
|
4026
|
+
"type": "string"
|
|
4027
|
+
}
|
|
4028
|
+
},
|
|
4029
|
+
"required": [
|
|
4030
|
+
"subject",
|
|
4031
|
+
"token"
|
|
4032
|
+
]
|
|
4033
|
+
}
|
|
4034
|
+
},
|
|
4035
|
+
"jwtHeaderName": {
|
|
4036
|
+
"type": "string"
|
|
4037
|
+
},
|
|
4038
|
+
"authorizationCookieName": {
|
|
4018
4039
|
"type": "string"
|
|
4019
4040
|
},
|
|
4020
4041
|
"signIn": {
|
|
@@ -4024,30 +4045,6 @@
|
|
|
4024
4045
|
"type": "array",
|
|
4025
4046
|
"items": {
|
|
4026
4047
|
"anyOf": [
|
|
4027
|
-
{
|
|
4028
|
-
"type": "object",
|
|
4029
|
-
"properties": {
|
|
4030
|
-
"resolver": {
|
|
4031
|
-
"type": "string",
|
|
4032
|
-
"const": "emailMatchingUserEntityAnnotation"
|
|
4033
|
-
}
|
|
4034
|
-
},
|
|
4035
|
-
"required": [
|
|
4036
|
-
"resolver"
|
|
4037
|
-
]
|
|
4038
|
-
},
|
|
4039
|
-
{
|
|
4040
|
-
"type": "object",
|
|
4041
|
-
"properties": {
|
|
4042
|
-
"resolver": {
|
|
4043
|
-
"type": "string",
|
|
4044
|
-
"const": "idMatchingUserEntityAnnotation"
|
|
4045
|
-
}
|
|
4046
|
-
},
|
|
4047
|
-
"required": [
|
|
4048
|
-
"resolver"
|
|
4049
|
-
]
|
|
4050
|
-
},
|
|
4051
4048
|
{
|
|
4052
4049
|
"type": "object",
|
|
4053
4050
|
"properties": {
|
|
@@ -4088,8 +4085,11 @@
|
|
|
4088
4085
|
}
|
|
4089
4086
|
},
|
|
4090
4087
|
"required": [
|
|
4091
|
-
"
|
|
4088
|
+
"teamName"
|
|
4092
4089
|
]
|
|
4090
|
+
},
|
|
4091
|
+
"backstageTokenExpiration": {
|
|
4092
|
+
"description": "The backstage token expiration."
|
|
4093
4093
|
}
|
|
4094
4094
|
}
|
|
4095
4095
|
}
|
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-20241217023754",
|
|
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-20241217023754",
|
|
48
|
+
"@backstage/catalog-model": "0.0.0-nightly-20241217023754",
|
|
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-20241217023754",
|
|
51
|
+
"@backstage/plugin-techdocs-node": "0.0.0-nightly-20241217023754",
|
|
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-20241217023754",
|
|
62
62
|
"@types/commander": "^2.12.2",
|
|
63
63
|
"@types/fs-extra": "^11.0.0",
|
|
64
64
|
"@types/http-proxy": "^1.17.4",
|