@dcl/sdk-commands 7.1.4-4491682599.commit-ac44614 → 7.1.4-4492843881.commit-442dfb1

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.
@@ -25,9 +25,10 @@ exports.getDCLInfoConfig = getDCLInfoConfig;
25
25
  * Config that can be override via ENV variables
26
26
  */
27
27
  function getEnvConfig() {
28
- const { SEGMENT_KEY } = process.env;
28
+ const { SEGMENT_KEY, TRACK_STATS } = process.env;
29
29
  const envConfig = {
30
- segmentKey: SEGMENT_KEY
30
+ segmentKey: SEGMENT_KEY,
31
+ trackStats: TRACK_STATS !== undefined ? TRACK_STATS === 'true' : undefined
31
32
  };
32
33
  return removeEmptyKeys(envConfig);
33
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/sdk-commands",
3
- "version": "7.1.4-4491682599.commit-ac44614",
3
+ "version": "7.1.4-4492843881.commit-442dfb1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "start": "tsc -p tsconfig.json --watch",
@@ -16,9 +16,9 @@
16
16
  "author": "Decentraland",
17
17
  "license": "Apache-2.0",
18
18
  "dependencies": {
19
- "@dcl/dcl-rollup": "7.1.4-4491682599.commit-ac44614",
19
+ "@dcl/dcl-rollup": "7.1.4-4492843881.commit-442dfb1",
20
20
  "@dcl/hashing": "1.1.3",
21
- "@dcl/inspector": "7.1.4-4491682599.commit-ac44614",
21
+ "@dcl/inspector": "7.1.4-4492843881.commit-442dfb1",
22
22
  "@dcl/linker-dapp": "0.7.0",
23
23
  "@dcl/mini-comms": "1.0.1-20230216163137.commit-a4c75be",
24
24
  "@dcl/protocol": "1.0.0-4408137944.commit-a67c796",
@@ -56,5 +56,5 @@
56
56
  "files": [
57
57
  "dist"
58
58
  ],
59
- "commit": "ac4461417cacdf02ecfe5b34987c0e55b41639fa"
59
+ "commit": "442dfb13140b94512e41ec32ec5c766961ae7ca2"
60
60
  }