mapshaper 0.5.116 → 0.6.0

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/bin/mapshaper CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- var mapshaper = require("../mapshaper.js");
3
+ var mapshaper = require('../mapshaper.js');
4
4
  mapshaper.enableLogging();
5
5
  mapshaper.runCommands(process.argv.slice(2), done);
6
6
  function done(err) {
package/bin/mapshaper-gui CHANGED
@@ -247,6 +247,7 @@ function expandShapefiles(files) {
247
247
  if (isUrl(f)) return; // TODO: try to load aux files from URLs
248
248
  addAuxFile(files, f, '.dbf');
249
249
  addAuxFile(files, f, '.prj');
250
+ addAuxFile(files, f, '.shx');
250
251
  addAuxFile(files, f, '.cpg');
251
252
  });
252
253
  return files;