@threlte/gltf 1.0.0-next.8 → 1.0.0-next.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @threlte/gltf
2
2
 
3
+ ## 1.0.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 89710f3e: Removed logs
8
+
3
9
  ## 1.0.0-next.8
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@threlte/gltf",
3
- "version": "1.0.0-next.8",
3
+ "version": "1.0.0-next.9",
4
4
  "description": "GLTF to Threlte converter",
5
5
  "type": "module",
6
6
  "keywords": [
package/src/index.js CHANGED
@@ -51,20 +51,11 @@ export default function (file, output, options) {
51
51
  const filePath = getRelativeFilePath(file)
52
52
  const data = fs.readFileSync(file)
53
53
  const arrayBuffer = toArrayBuffer(data)
54
- console.log(arrayBuffer)
55
-
56
- gltfLoader.parse(
57
- arrayBuffer,
58
- '',
59
- (gltf) => {},
60
- (error) => console.error(error)
61
- )
62
54
 
63
55
  gltfLoader.parse(
64
56
  arrayBuffer,
65
57
  '',
66
58
  (gltf) => {
67
- console.log('NO PARSE?')
68
59
  const raw = parse(filePath, gltf, options)
69
60
  try {
70
61
  const prettiered = prettier.format(raw, {