@jahia/cypress 3.19.2 → 3.19.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.
package/ci.build.sh CHANGED
@@ -39,6 +39,6 @@ if [ -d ./jahia-module ]; then
39
39
  fi
40
40
  cd ..
41
41
  fi
42
- YARN_VERSION=${YARN_VERSION:-1.22.19}
43
42
 
44
- docker build --build-arg YARN_VERSION=${YARN_VERSION} -f $BASEDIR/env.Dockerfile -t ${TESTS_IMAGE} .
43
+
44
+ docker build -f $BASEDIR/env.Dockerfile -t ${TESTS_IMAGE} .
package/env.Dockerfile CHANGED
@@ -2,7 +2,6 @@ FROM cypress/browsers:node-20.10.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.
2
2
 
3
3
  ARG MAVEN_VER="3.8.1"
4
4
  ARG MAVEN_BASE_URL="https://archive.apache.org/dist/maven/maven-3"
5
- ARG YARN_VERSION="1.22.19"
6
5
 
7
6
  RUN apt-get update && apt-get install -y jq curl
8
7
 
@@ -16,8 +15,7 @@ COPY --chown=jahians:jahians package.json yarn.lock /home/jahians/
16
15
  RUN mkdir -p /home/jahians/run-artifacts /home/jahians/results /home/jahians/cypress/plugins
17
16
 
18
17
  #CI=true reduces the verbosity of the installation logs
19
- RUN CI=true yarn set version ${YARN_VERSION} ; \
20
- yarn install
18
+ RUN CI=true yarn install --non-interactive
21
19
 
22
20
  COPY --chown=jahians:jahians . /home/jahians
23
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "3.19.2",
3
+ "version": "3.19.3",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts"
@@ -8,8 +8,8 @@
8
8
  "bin": {
9
9
  "ci.build": "./ci.build.sh",
10
10
  "ci.startup": "./ci.startup.sh",
11
- "env.debug": "./env.debug.sh",
12
- "env.run": "./env.run.sh"
11
+ "env.run": "./env.run.sh",
12
+ "env.debug": "./env.debug.sh"
13
13
  },
14
14
  "main": "dist/index.js",
15
15
  "types": "dist/index.d.ts",