@e-mc/cloud 0.5.1 → 0.5.2
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/index.js +4 -2
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -756,7 +756,9 @@ class Cloud extends core_1.ClientDb {
|
|
|
756
756
|
let result;
|
|
757
757
|
if (service[0] === '@') {
|
|
758
758
|
result = service;
|
|
759
|
-
folder
|
|
759
|
+
if (!folder && !service.startsWith("@squared-functions/" /* NAMESPACE.SQUARED_FUNCTIONS */)) {
|
|
760
|
+
folder = 'client';
|
|
761
|
+
}
|
|
760
762
|
}
|
|
761
763
|
else {
|
|
762
764
|
switch (service) {
|
|
@@ -776,7 +778,7 @@ class Cloud extends core_1.ClientDb {
|
|
|
776
778
|
case 'ibm':
|
|
777
779
|
case 'minio':
|
|
778
780
|
case 'oci':
|
|
779
|
-
result =
|
|
781
|
+
result = "@pi-r/" /* NAMESPACE.PIR */ + service;
|
|
780
782
|
break;
|
|
781
783
|
default:
|
|
782
784
|
result = service;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e-mc/cloud",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Cloud constructor for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"license": "BSD 3-Clause",
|
|
21
21
|
"homepage": "https://github.com/anpham6/e-mc#readme",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@e-mc/core": "0.5.
|
|
24
|
-
"@e-mc/db": "0.5.
|
|
25
|
-
"@e-mc/types": "0.5.
|
|
23
|
+
"@e-mc/core": "0.5.2",
|
|
24
|
+
"@e-mc/db": "0.5.2",
|
|
25
|
+
"@e-mc/types": "0.5.2"
|
|
26
26
|
}
|
|
27
27
|
}
|