codefresh 0.81.5 → 0.81.6
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/.nvmrc +1 -1
- package/Dockerfile +1 -1
- package/package.json +3 -3
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v18.12.1
|
package/Dockerfile
CHANGED
|
@@ -11,7 +11,7 @@ RUN pip install yq==${YQ_VERSION}
|
|
|
11
11
|
RUN pyinstaller --noconfirm --onefile --log-level DEBUG --clean --distpath /tmp/ $(which yq)
|
|
12
12
|
|
|
13
13
|
# Main
|
|
14
|
-
FROM node:12.
|
|
14
|
+
FROM node:18.12.1-alpine3.15
|
|
15
15
|
|
|
16
16
|
RUN apk --update add --no-cache ca-certificates git curl bash jq
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codefresh",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.6",
|
|
4
4
|
"description": "Codefresh command line utility",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"preferGlobal": true,
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"test": "jest .spec.js --coverage",
|
|
10
10
|
"e2e": "bash e2e/e2e.spec.sh",
|
|
11
11
|
"eslint": "eslint --fix lib/logic/**",
|
|
12
|
-
"pkg": "pkg . -t
|
|
12
|
+
"pkg": "pkg . -t node16-alpine-x64,node16-macos-x64,node16-linux-x64,node16-win-x64 --out-path ./dist",
|
|
13
13
|
"serve-docs": "yarn build-local-docs && cd temp && hugo server -D",
|
|
14
14
|
"serve-docs-beta": "ALLOW_BETA_COMMANDS=true yarn build-local-docs && cd temp && hugo server -D",
|
|
15
15
|
"build-local-docs": "node ./docs/index.js",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"author": "Codefresh",
|
|
106
106
|
"license": "ISC",
|
|
107
107
|
"engines": {
|
|
108
|
-
"node": "
|
|
108
|
+
"node": "18.12.1"
|
|
109
109
|
},
|
|
110
110
|
"jest": {
|
|
111
111
|
"testEnvironment": "node",
|