@cloudcommerce/cli 2.41.11 → 2.41.13

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.
@@ -15,7 +15,13 @@ fi
15
15
 
16
16
  project_id=$1
17
17
  domain=$2
18
- swr_origin_url=$3
18
+ if [[ -n "$3" ]]; then
19
+ if [[ "$3" == http*://* ]]; then
20
+ swr_origin_url="$3"
21
+ else
22
+ swr_origin_url="https://$3"
23
+ fi
24
+ fi
19
25
 
20
26
  response=$(curl --silent --request GET \
21
27
  --url https://api.bunny.net/pullzone \
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/cli",
3
3
  "type": "module",
4
- "version": "2.41.11",
4
+ "version": "2.41.13",
5
5
  "description": "e-com.plus Cloud Commerce CLI tools",
6
6
  "bin": {
7
7
  "cloudcommerce": "./bin/run.mjs"
@@ -30,15 +30,15 @@
30
30
  },
31
31
  "homepage": "https://github.com/ecomplus/cloud-commerce/tree/main/packages/cli#readme",
32
32
  "dependencies": {
33
- "@fastify/deepmerge": "^3.0.0",
34
- "dotenv": "^16.4.7",
35
- "fast-xml-parser": "^5.0.9",
33
+ "@fastify/deepmerge": "^3.1.0",
34
+ "dotenv": "^16.5.0",
35
+ "fast-xml-parser": "^5.2.1",
36
36
  "image-size": "^1.2.0",
37
37
  "libsodium-wrappers": "^0.7.15",
38
38
  "md5": "^2.3.0",
39
39
  "typescript": "~5.8.3",
40
- "zx": "^8.4.1",
41
- "@cloudcommerce/api": "2.41.11"
40
+ "zx": "^8.5.3",
41
+ "@cloudcommerce/api": "2.41.13"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "bash ../../scripts/build-lib.sh"