@loaders.gl/ply 4.0.0-beta.3 → 4.0.0-beta.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/dist/dist.dev.js CHANGED
@@ -37,7 +37,6 @@ var __exports__ = (() => {
37
37
  name: "PLY",
38
38
  id: "ply",
39
39
  module: "ply",
40
- // shapes: ['mesh', 'gltf', 'columnar-table'],
41
40
  version: VERSION,
42
41
  worker: true,
43
42
  extensions: ["ply"],
@@ -632,7 +631,6 @@ var __exports__ = (() => {
632
631
  const header = {
633
632
  comments: [],
634
633
  elements: []
635
- // headerLength
636
634
  };
637
635
  await forEach(lineIterator, (line) => {
638
636
  line = line.trim();
@@ -792,9 +790,7 @@ var __exports__ = (() => {
792
790
  // src/index.ts
793
791
  var PLYLoader2 = {
794
792
  ...PLYLoader,
795
- // Note: parsePLY supports both text and binary
796
793
  parse: async (arrayBuffer, options) => parsePLY(arrayBuffer, options?.ply),
797
- // TODO - this may not detect text correctly?
798
794
  parseTextSync: (arrayBuffer, options) => parsePLY(arrayBuffer, options?.ply),
799
795
  parseSync: (arrayBuffer, options) => parsePLY(arrayBuffer, options?.ply),
800
796
  parseInBatches: (arrayBuffer, options) => parsePLYInBatches(arrayBuffer, options?.ply)
@@ -238,7 +238,7 @@
238
238
  }
239
239
 
240
240
  // src/ply-loader.ts
241
- var VERSION = true ? "4.0.0-beta.3" : "latest";
241
+ var VERSION = true ? "4.0.0-beta.4" : "latest";
242
242
  var PLYLoader = {
243
243
  name: "PLY",
244
244
  id: "ply",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/ply",
3
- "version": "4.0.0-beta.3",
3
+ "version": "4.0.0-beta.4",
4
4
  "description": "Framework-independent loader for the PLY format",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -42,8 +42,8 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@babel/runtime": "^7.3.1",
45
- "@loaders.gl/loader-utils": "4.0.0-beta.3",
46
- "@loaders.gl/schema": "4.0.0-beta.3"
45
+ "@loaders.gl/loader-utils": "4.0.0-beta.4",
46
+ "@loaders.gl/schema": "4.0.0-beta.4"
47
47
  },
48
- "gitHead": "7ba9621cc51c7a26c407086ac86171f35b8712af"
48
+ "gitHead": "848c20b474532d301f2c3f8d4e1fb9bf262b86d4"
49
49
  }