hereya-cli 0.30.0 → 0.32.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/README.md +62 -21
- package/dist/backend/common.d.ts +2 -2
- package/dist/backend/config.d.ts +10 -0
- package/dist/backend/config.js +23 -0
- package/dist/backend/file-storage/common.d.ts +49 -0
- package/dist/backend/file-storage/common.js +1 -0
- package/dist/backend/file-storage/local.d.ts +9 -0
- package/dist/backend/file-storage/local.js +84 -0
- package/dist/backend/file-storage/s3.d.ts +23 -0
- package/dist/backend/file-storage/s3.js +127 -0
- package/dist/backend/file.d.ts +21 -0
- package/dist/backend/file.js +413 -0
- package/dist/backend/index.d.ts +4 -2
- package/dist/backend/index.js +32 -3
- package/dist/backend/local.d.ts +3 -19
- package/dist/backend/local.js +5 -375
- package/dist/backend/s3.d.ts +4 -0
- package/dist/backend/s3.js +7 -0
- package/dist/commands/config/get-backend/index.d.ts +6 -0
- package/dist/commands/config/get-backend/index.js +12 -0
- package/dist/commands/config/use-backend/index.d.ts +9 -0
- package/dist/commands/config/use-backend/index.js +20 -0
- package/dist/infrastructure/aws-config.d.ts +7 -0
- package/dist/infrastructure/aws-config.js +12 -0
- package/dist/infrastructure/aws.d.ts +0 -2
- package/dist/infrastructure/aws.js +22 -15
- package/dist/infrastructure/common.d.ts +3 -0
- package/dist/infrastructure/common.js +5 -0
- package/dist/infrastructure/local.js +3 -6
- package/dist/lib/yaml-utils.d.ts +4 -0
- package/dist/lib/yaml-utils.js +12 -5
- package/oclif.manifest.json +58 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -558,6 +558,63 @@
|
|
|
558
558
|
"index.js"
|
|
559
559
|
]
|
|
560
560
|
},
|
|
561
|
+
"config:get-backend": {
|
|
562
|
+
"aliases": [],
|
|
563
|
+
"args": {},
|
|
564
|
+
"description": "get the current backend type",
|
|
565
|
+
"examples": [
|
|
566
|
+
"<%= config.bin %> <%= command.id %>"
|
|
567
|
+
],
|
|
568
|
+
"flags": {},
|
|
569
|
+
"hasDynamicHelp": false,
|
|
570
|
+
"hiddenAliases": [],
|
|
571
|
+
"id": "config:get-backend",
|
|
572
|
+
"pluginAlias": "hereya-cli",
|
|
573
|
+
"pluginName": "hereya-cli",
|
|
574
|
+
"pluginType": "core",
|
|
575
|
+
"strict": true,
|
|
576
|
+
"enableJsonFlag": false,
|
|
577
|
+
"isESM": true,
|
|
578
|
+
"relativePath": [
|
|
579
|
+
"dist",
|
|
580
|
+
"commands",
|
|
581
|
+
"config",
|
|
582
|
+
"get-backend",
|
|
583
|
+
"index.js"
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
"config:use-backend": {
|
|
587
|
+
"aliases": [],
|
|
588
|
+
"args": {
|
|
589
|
+
"type": {
|
|
590
|
+
"description": "type of backend to use. Possible values: s3, local",
|
|
591
|
+
"name": "type",
|
|
592
|
+
"required": true
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"description": "set the current backend type",
|
|
596
|
+
"examples": [
|
|
597
|
+
"<%= config.bin %> <%= command.id %> s3",
|
|
598
|
+
"<%= config.bin %> <%= command.id %> local"
|
|
599
|
+
],
|
|
600
|
+
"flags": {},
|
|
601
|
+
"hasDynamicHelp": false,
|
|
602
|
+
"hiddenAliases": [],
|
|
603
|
+
"id": "config:use-backend",
|
|
604
|
+
"pluginAlias": "hereya-cli",
|
|
605
|
+
"pluginName": "hereya-cli",
|
|
606
|
+
"pluginType": "core",
|
|
607
|
+
"strict": true,
|
|
608
|
+
"enableJsonFlag": false,
|
|
609
|
+
"isESM": true,
|
|
610
|
+
"relativePath": [
|
|
611
|
+
"dist",
|
|
612
|
+
"commands",
|
|
613
|
+
"config",
|
|
614
|
+
"use-backend",
|
|
615
|
+
"index.js"
|
|
616
|
+
]
|
|
617
|
+
},
|
|
561
618
|
"env:set": {
|
|
562
619
|
"aliases": [],
|
|
563
620
|
"args": {
|
|
@@ -1006,5 +1063,5 @@
|
|
|
1006
1063
|
]
|
|
1007
1064
|
}
|
|
1008
1065
|
},
|
|
1009
|
-
"version": "0.
|
|
1066
|
+
"version": "0.32.0"
|
|
1010
1067
|
}
|