@loaders.gl/tile-converter 4.3.0 → 4.3.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.
- package/dist/converter-cli.js +4 -0
- package/dist/converter.min.cjs +2 -2
- package/dist/deps-installer/deps-installer.js +1 -1
- package/dist/i3s-server/bin/i3s-server.min.cjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/pgm-loader.js +1 -1
- package/package.json +17 -17
- package/src/converter-cli.ts +4 -0
package/dist/converter-cli.js
CHANGED
|
@@ -275,6 +275,10 @@ function parseOptions(args) {
|
|
|
275
275
|
case '--help':
|
|
276
276
|
printHelp();
|
|
277
277
|
break;
|
|
278
|
+
// we need this option for backward compatibility
|
|
279
|
+
// do nothing but don't throw the error
|
|
280
|
+
case '--slpk':
|
|
281
|
+
break;
|
|
278
282
|
default:
|
|
279
283
|
console.warn(`Unknown option ${arg}`);
|
|
280
284
|
process.exit(0); // eslint-disable-line
|