@expofp/offline 3.6.0 → 3.6.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.
@@ -37,8 +37,7 @@ export async function offlinizeAssetsInPlace(data, opts) {
37
37
  const enableLegacy = !!legacyDataUrlBase;
38
38
  async function walk(node) {
39
39
  if (Array.isArray(node)) {
40
- for (let i = 0; i < node.length; i++) {
41
- const el = node[i];
40
+ for (const el of node) {
42
41
  if (el && typeof el === 'object') {
43
42
  await walk(el);
44
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expofp/offline",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "type": "module",
5
5
  "description": "CLI tool for creating offline copies of ExpoFP floor plans",
6
6
  "homepage": "https://developer.expofp.com/",
@@ -31,9 +31,9 @@
31
31
  "dependencies": {
32
32
  "debug": "^4.4.3",
33
33
  "tslib": "^2.3.0",
34
- "@expofp/data": "3.6.0",
35
- "@expofp/floorplan": "3.6.0",
36
- "@expofp/resolve": "3.6.0",
37
- "@expofp/utils": "3.6.0"
34
+ "@expofp/data": "3.6.1",
35
+ "@expofp/resolve": "3.6.1",
36
+ "@expofp/floorplan": "3.6.1",
37
+ "@expofp/utils": "3.6.1"
38
38
  }
39
39
  }