@dcl/ecs 7.1.1-4386722558.commit-407b3a3 → 7.1.1-4387338275.commit-167a7e2
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.
|
@@ -97,10 +97,10 @@ export function defineTransformComponent(engine) {
|
|
|
97
97
|
return {
|
|
98
98
|
...transformDef,
|
|
99
99
|
create(entity, val) {
|
|
100
|
-
return transformDef.create(entity, val);
|
|
100
|
+
return transformDef.create(entity, TransformSchema.extend(val));
|
|
101
101
|
},
|
|
102
102
|
createOrReplace(entity, val) {
|
|
103
|
-
return transformDef.createOrReplace(entity, val);
|
|
103
|
+
return transformDef.createOrReplace(entity, TransformSchema.extend(val));
|
|
104
104
|
}
|
|
105
105
|
};
|
|
106
106
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/ecs",
|
|
3
|
-
"version": "7.1.1-
|
|
3
|
+
"version": "7.1.1-4387338275.commit-167a7e2",
|
|
4
4
|
"description": "Decentraland ECS",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"ts-proto": "^1.112.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dcl/js-runtime": "7.1.1-
|
|
30
|
+
"@dcl/js-runtime": "7.1.1-4387338275.commit-167a7e2",
|
|
31
31
|
"@dcl/protocol": "1.0.0-4177500465.commit-247c87f"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"displayName": "ECS",
|
|
41
41
|
"tsconfig": "./tsconfig.json"
|
|
42
42
|
},
|
|
43
|
-
"commit": "
|
|
43
|
+
"commit": "167a7e2cdf2b8ba2832595085fadf48f9f6c5bed"
|
|
44
44
|
}
|