@loaders.gl/tile-converter 4.2.1 → 4.2.3

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.
@@ -1,7 +1,7 @@
1
1
  import { Geoid, parsePGM } from '@math.gl/geoid';
2
2
  // __VERSION__ is injected by babel-plugin-version-inline
3
3
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
4
- const VERSION = typeof "4.2.0" !== 'undefined' ? "4.2.0" : 'latest';
4
+ const VERSION = typeof "4.2.2" !== 'undefined' ? "4.2.2" : 'latest';
5
5
  export { Geoid };
6
6
  /**
7
7
  * Loader for PGM - Netpbm grayscale image format
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/tile-converter",
3
- "version": "4.2.1",
3
+ "version": "4.2.3",
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.1",
57
- "@loaders.gl/compression": "4.2.1",
58
- "@loaders.gl/crypto": "4.2.1",
59
- "@loaders.gl/draco": "4.2.1",
60
- "@loaders.gl/gltf": "4.2.1",
61
- "@loaders.gl/i3s": "4.2.1",
62
- "@loaders.gl/images": "4.2.1",
63
- "@loaders.gl/loader-utils": "4.2.1",
64
- "@loaders.gl/math": "4.2.1",
65
- "@loaders.gl/polyfills": "4.2.1",
66
- "@loaders.gl/textures": "4.2.1",
67
- "@loaders.gl/tiles": "4.2.1",
68
- "@loaders.gl/worker-utils": "4.2.1",
69
- "@loaders.gl/zip": "4.2.1",
56
+ "@loaders.gl/3d-tiles": "4.2.3",
57
+ "@loaders.gl/compression": "4.2.3",
58
+ "@loaders.gl/crypto": "4.2.3",
59
+ "@loaders.gl/draco": "4.2.3",
60
+ "@loaders.gl/gltf": "4.2.3",
61
+ "@loaders.gl/i3s": "4.2.3",
62
+ "@loaders.gl/images": "4.2.3",
63
+ "@loaders.gl/loader-utils": "4.2.3",
64
+ "@loaders.gl/math": "4.2.3",
65
+ "@loaders.gl/polyfills": "4.2.3",
66
+ "@loaders.gl/textures": "4.2.3",
67
+ "@loaders.gl/tiles": "4.2.3",
68
+ "@loaders.gl/worker-utils": "4.2.3",
69
+ "@loaders.gl/zip": "4.2.3",
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": "b2ea799ff9f233ab8af0a6c3696e28ddf6e3c5a3"
97
+ "gitHead": "b81621afebc699faf74a4987d7859a587fe73a78"
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