RubyGems
npm
Organizations
Log in
Sign up
npm
@candlerip/shared3
Versions diffs
0.0.55 → 0.0.56
@candlerip/shared3 0.0.55 → 0.0.56
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/_devops/docker/docker-publish.sh
+1
-1
package/package.json
+1
-1
package/src/environment/environment-variables/workers/environment-variables-worker/index.js
+1
-0
package/_devops/docker/docker-publish.sh
CHANGED
Viewed
@@ -1,4 +1,4 @@
1
1
#!/usr/bin/bash
2
2
3
-
docker build -t reveszimre/$1 --build-arg
ENVIRONMENT_MODE
=production .
3
+
docker build -t reveszimre/$1 --build-arg
NODE_ENV
=production .
4
4
docker push reveszimre/$1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@candlerip/shared3",
3
-
"version": "0.0.
55
",
3
+
"version": "0.0.
56
",
4
4
"type": "module",
5
5
"main": "src/index.js",
6
6
"bin": {
package/src/environment/environment-variables/workers/environment-variables-worker/index.js
CHANGED
Viewed
@@ -9,6 +9,7 @@ export const EnvironmentVariablesWorker = (() => {
9
9
if ('customError' in resp) {
10
10
return resp;
11
11
}
12
+
envs = resp.data;
12
13
return resp;
13
14
};
14
15
const isDevelopment = () => isDev(NODE_ENV);