@woosh/meep-engine 2.47.13 → 2.47.14

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.47.13",
8
+ "version": "2.47.14",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -24,7 +24,7 @@ export function abstractJSONSerializer(source, serializers, classNames) {
24
24
  }
25
25
 
26
26
  if (typeName === undefined) {
27
- throw new Error(`Failed to resolve type name for parameter '${key}'. No name found in classNames registry and no .typeName field on the constructor`);
27
+ throw new Error(`Failed to resolve type name. No name found in classNames registry and no .typeName field on the constructor`);
28
28
  }
29
29
 
30
30
  let serializer = serializers.get(typeName);