@jahia/cypress 6.4.2 → 6.4.3

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.
Files changed (2) hide show
  1. package/env.provision.sh +2 -2
  2. package/package.json +7 -3
package/env.provision.sh CHANGED
@@ -76,7 +76,7 @@ if [[ -d artifacts/ ]]; then
76
76
  for file in $(ls -1 *-SNAPSHOT.jar | sort -n)
77
77
  do
78
78
  echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Submitting module from: $file =="
79
- curl -u root:${SUPER_USER_PASSWORD} -X POST ${JAHIA_URL}/modules/api/provisioning --form script='[{"installAndStartBundle":"'"$file"'", "forceUpdate":true}]' --form file=@$file
79
+ curl -u root:${SUPER_USER_PASSWORD} -X POST ${JAHIA_URL}/modules/api/provisioning --form script='[{"installOrUpgradeBundle":"'"$file"'", "forceUpdate":true}]' --form file=@$file
80
80
  echo
81
81
  echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Module submitted =="
82
82
  done
@@ -85,7 +85,7 @@ if [[ -d artifacts/ ]]; then
85
85
  for file in $(ls -1 *-SNAPSHOT.tgz | sort -n)
86
86
  do
87
87
  echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Submitting Javascript module from: $file =="
88
- curl -u root:${SUPER_USER_PASSWORD} -X POST ${JAHIA_URL}/modules/api/provisioning --form script='[{"installAndStartBundle":"'"$file"'", "forceUpdate":true}]' --form file=@$file
88
+ curl -u root:${SUPER_USER_PASSWORD} -X POST ${JAHIA_URL}/modules/api/provisioning --form script='[{"installOrUpgradeBundle":"'"$file"'", "forceUpdate":true}]' --form file=@$file
89
89
  echo
90
90
  echo "$(date +'%d %B %Y - %k:%M') [MODULE_INSTALL] == Javascript Module submitted =="
91
91
  done
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "6.4.2",
3
+ "version": "6.4.3",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts --max-warnings=0"
@@ -14,6 +14,10 @@
14
14
  "main": "dist/index.js",
15
15
  "types": "dist/index.d.ts",
16
16
  "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Jahia/jahia-cypress.git"
20
+ },
17
21
  "devDependencies": {
18
22
  "@jahia/eslint-config": "^1.1.0",
19
23
  "@typescript-eslint/eslint-plugin": "^4.29.3",
@@ -34,5 +38,5 @@
34
38
  "graphql": "^15.5.0",
35
39
  "graphql-tag": "^2.11.0"
36
40
  },
37
- "packageManager": "yarn@4.5.0"
38
- }
41
+ "packageManager": "yarn@4.12.0"
42
+ }