@webiny/cli 5.37.8 → 5.38.0-beta.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.38.0-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"webiny": "./bin.js"
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"author": "Pavel Denisjuk <pavel@webiny.com>",
|
|
14
14
|
"description": "A tool to bootstrap a Webiny project.",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@webiny/telemetry": "5.
|
|
17
|
-
"@webiny/wcp": "5.
|
|
16
|
+
"@webiny/telemetry": "5.38.0-beta.1",
|
|
17
|
+
"@webiny/wcp": "5.38.0-beta.1",
|
|
18
18
|
"boolean": "3.2.0",
|
|
19
19
|
"camelcase": "5.3.1",
|
|
20
20
|
"chalk": "4.1.2",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
]
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "6daf38d3ed0c029a8fea005c2b6246e5b325a09c"
|
|
68
68
|
}
|
|
@@ -44,3 +44,10 @@ if (project.config.featureFlags) {
|
|
|
44
44
|
process.env.WEBINY_FEATURE_FLAGS = JSON.stringify(project.config.featureFlags);
|
|
45
45
|
process.env.REACT_APP_WEBINY_FEATURE_FLAGS = JSON.stringify(project.config.featureFlags);
|
|
46
46
|
}
|
|
47
|
+
|
|
48
|
+
// With 5.38.0, we are hiding the `WEBINY_ELASTICSEARCH_INDEX_LOCALE` env variable and always setting it to `true`.
|
|
49
|
+
// This is because this variable is not something users should be concerned with, nor should they be able to change it.
|
|
50
|
+
// In order to ensure backwards compatibility, we first check if the variable is set, and if it is, we don't override it.
|
|
51
|
+
if (!"WEBINY_ELASTICSEARCH_INDEX_LOCALE" in process.env) {
|
|
52
|
+
process.env.WEBINY_ELASTICSEARCH_INDEX_LOCALE = "true";
|
|
53
|
+
}
|