@autofleet/settings 1.0.10-alpha → 1.0.10-alpha-2

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/package.json +2 -2
  2. package/src/index.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/settings",
3
- "version": "1.0.10-alpha",
3
+ "version": "1.0.10-alpha-2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@autofleet/logger": "^1.0.0",
18
- "@autofleet/network": "^1.2.1",
18
+ "@autofleet/network": "^1.2.9-alpha-12",
19
19
  "@types/jest": "^22.0.0",
20
20
  "bluebird": "^3.7.2",
21
21
  "dotenv": "^8.2.0",
package/src/index.ts CHANGED
@@ -148,7 +148,6 @@ class SettingsManager {
148
148
  const settingsToReturn = new Map();
149
149
  const settingsToFetch: any[] = [];
150
150
 
151
-
152
151
  settingsToGet.map((obj) => {
153
152
  const cacheKey = `${obj.key}_${JSON.stringify(labels)}`;
154
153
  const cacheValue = this.settingsCache.get(cacheKey);