Skip to content

Commit 5bfc099

Browse files
Returning --slpk for backward compatibility (#3138)
1 parent a87d069 commit 5bfc099

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/tile-converter/src/converter-cli.ts

+4
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,10 @@ function parseOptions(args: string[]): TileConversionOptions {
395395
case '--help':
396396
printHelp();
397397
break;
398+
// we need this option for backward compatibility
399+
// do nothing but don't throw the error
400+
case '--slpk':
401+
break;
398402
default:
399403
console.warn(`Unknown option ${arg}`);
400404
process.exit(0); // eslint-disable-line

0 commit comments

Comments
 (0)