@loaders.gl/tile-converter 4.2.2 → 4.2.4

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": "@loaders.gl/tile-converter",
3
- "version": "4.2.2",
3
+ "version": "4.2.4",
4
4
  "description": "Converter",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -53,20 +53,20 @@
53
53
  "copy-certificates": "cp -R src/i3s-server/certs dist/i3s-server"
54
54
  },
55
55
  "dependencies": {
56
- "@loaders.gl/3d-tiles": "4.2.2",
57
- "@loaders.gl/compression": "4.2.2",
58
- "@loaders.gl/crypto": "4.2.2",
59
- "@loaders.gl/draco": "4.2.2",
60
- "@loaders.gl/gltf": "4.2.2",
61
- "@loaders.gl/i3s": "4.2.2",
62
- "@loaders.gl/images": "4.2.2",
63
- "@loaders.gl/loader-utils": "4.2.2",
64
- "@loaders.gl/math": "4.2.2",
65
- "@loaders.gl/polyfills": "4.2.2",
66
- "@loaders.gl/textures": "4.2.2",
67
- "@loaders.gl/tiles": "4.2.2",
68
- "@loaders.gl/worker-utils": "4.2.2",
69
- "@loaders.gl/zip": "4.2.2",
56
+ "@loaders.gl/3d-tiles": "4.2.4",
57
+ "@loaders.gl/compression": "4.2.4",
58
+ "@loaders.gl/crypto": "4.2.4",
59
+ "@loaders.gl/draco": "4.2.4",
60
+ "@loaders.gl/gltf": "4.2.4",
61
+ "@loaders.gl/i3s": "4.2.4",
62
+ "@loaders.gl/images": "4.2.4",
63
+ "@loaders.gl/loader-utils": "4.2.4",
64
+ "@loaders.gl/math": "4.2.4",
65
+ "@loaders.gl/polyfills": "4.2.4",
66
+ "@loaders.gl/textures": "4.2.4",
67
+ "@loaders.gl/tiles": "4.2.4",
68
+ "@loaders.gl/worker-utils": "4.2.4",
69
+ "@loaders.gl/zip": "4.2.4",
70
70
  "@math.gl/core": "^4.0.0",
71
71
  "@math.gl/culling": "^4.0.0",
72
72
  "@math.gl/geoid": "^4.0.0",
@@ -94,5 +94,5 @@
94
94
  "peerDependencies": {
95
95
  "@loaders.gl/core": "^4.0.0"
96
96
  },
97
- "gitHead": "3e70b64ab0e6894bb359dfcdc85d5f370539fbe2"
97
+ "gitHead": "68ce51cb8ef8ca55a9cc66801e0aff504e925bb9"
98
98
  }
@@ -88,13 +88,14 @@ export class DepsInstaller {
88
88
  const childProcess = new ChildProcessProxy();
89
89
  const nodeDir = dirname(process.execPath);
90
90
  await childProcess.start({
91
- command: `${nodeDir}/${process.platform === 'win32' ? 'npm.cmd' : 'npm'}`,
91
+ command: `"${nodeDir}/${process.platform === 'win32' ? 'npm.cmd' : 'npm'}"`,
92
92
  // `npm install sharp join-images` works unstable. It fails because installed `sharp` version
93
93
  // may be different from the version required by `join-images`. Pointing to specific versions
94
94
  // resolve this issue
95
95
  arguments: ['install', 'sharp@0.30.4', 'join-images@1.1.3'],
96
96
  wait: 0,
97
- ignoreStderr: true
97
+ ignoreStderr: true,
98
+ spawn: {shell: true}
98
99
  });
99
100
 
100
101
  console.log('All dependencies were installed succesfully.'); // eslint-disable-line no-console