@jahia/cypress 3.19.0 → 3.19.1

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.Dockerfile +6 -7
  2. package/package.json +3 -3
package/env.Dockerfile CHANGED
@@ -16,12 +16,11 @@ WORKDIR /home/jahians
16
16
  COPY --chown=jahians:jahians . /home/jahians
17
17
 
18
18
  #CI=true reduces the verbosity of the installation logs
19
- RUN CI=true yarn set version ${YARN_VERSION} \
20
- CI=true yarn install; \
21
- ls -al /home/jahians/ ; \
22
- /home/jahians/node_modules/.bin/cypress install; \
23
- mkdir -p .m2; \
24
- cp maven.settings.xml .m2/settings.xml; \
25
- exit 0
19
+ RUN CI=true yarn set version ${YARN_VERSION} ; \
20
+ yarn install; \
21
+ /home/jahians/node_modules/.bin/cypress install
22
+
23
+ # Exit 0 is used to not fail if the maven.settings.xml file is not present
24
+ RUN mkdir -p .m2; cp maven.settings.xml .m2/settings.xml; exit 0
26
25
 
27
26
  CMD /bin/bash -c /home/jahians/env.run.sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "3.19.0",
3
+ "version": "3.19.1",
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.run": "./env.run.sh",
12
- "env.debug": "./env.debug.sh"
11
+ "env.debug": "./env.debug.sh",
12
+ "env.run": "./env.run.sh"
13
13
  },
14
14
  "main": "dist/index.js",
15
15
  "types": "dist/index.d.ts",