@loaders.gl/draco 4.1.0-alpha.9 → 4.2.0-alpha.1

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.
@@ -43,7 +43,7 @@
43
43
  );
44
44
  globalThis._loadersgl_.version = NPM_TAG;
45
45
  } else {
46
- globalThis._loadersgl_.version = "4.1.0-alpha.9";
46
+ globalThis._loadersgl_.version = "4.2.0-alpha.1";
47
47
  }
48
48
  }
49
49
  return globalThis._loadersgl_.version;
@@ -651,7 +651,7 @@
651
651
  }
652
652
 
653
653
  // src/lib/utils/version.ts
654
- var VERSION2 = true ? "4.1.0-alpha.9" : "latest";
654
+ var VERSION2 = true ? "4.2.0-alpha.1" : "latest";
655
655
 
656
656
  // src/draco-writer.ts
657
657
  var DEFAULT_DRACO_WRITER_OPTIONS = {
@@ -1,2 +1,2 @@
1
- export const VERSION = typeof "4.1.0-alpha.9" !== 'undefined' ? "4.1.0-alpha.9" : 'latest';
1
+ export const VERSION = typeof "4.2.0-alpha.1" !== 'undefined' ? "4.2.0-alpha.1" : 'latest';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/draco",
3
- "version": "4.1.0-alpha.9",
3
+ "version": "4.2.0-alpha.1",
4
4
  "description": "Framework-independent loader and writer for Draco compressed meshes and point clouds",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,9 +31,9 @@
31
31
  "module": "dist/index.js",
32
32
  "exports": {
33
33
  ".": {
34
+ "types": "./dist/index.d.ts",
34
35
  "import": "./dist/index.js",
35
- "require": "./dist/index.cjs",
36
- "types": "./dist/index.d.ts"
36
+ "require": "./dist/index.cjs"
37
37
  }
38
38
  },
39
39
  "sideEffects": false,
@@ -57,13 +57,13 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@babel/runtime": "^7.3.1",
60
- "@loaders.gl/loader-utils": "4.1.0-alpha.9",
61
- "@loaders.gl/schema": "4.1.0-alpha.9",
62
- "@loaders.gl/worker-utils": "4.1.0-alpha.9",
60
+ "@loaders.gl/loader-utils": "4.2.0-alpha.1",
61
+ "@loaders.gl/schema": "4.2.0-alpha.1",
62
+ "@loaders.gl/worker-utils": "4.2.0-alpha.1",
63
63
  "draco3d": "1.5.5"
64
64
  },
65
65
  "devDependencies": {
66
- "@loaders.gl/polyfills": "4.1.0-alpha.9"
66
+ "@loaders.gl/polyfills": "4.2.0-alpha.1"
67
67
  },
68
- "gitHead": "0291d4d78d71202385d0368942f84778d6aafa82"
68
+ "gitHead": "d4da81f4d8fb2a3b43b0e025109cf7ccfb317d4c"
69
69
  }