@dcl/ecs 7.2.3 → 7.2.4-5313621701.commit-5dea430
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/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -22,7 +22,7 @@ export const Animator = /* @__PURE__*/ components.Animator(engine);
|
|
|
22
22
|
export const Material = /* @__PURE__*/ components.Material(engine);
|
|
23
23
|
export const MeshRenderer = /* @__PURE__*/ components.MeshRenderer(engine);
|
|
24
24
|
export const MeshCollider = /* @__PURE__*/ components.MeshCollider(engine);
|
|
25
|
-
export const Name =
|
|
25
|
+
export const Name = components.Name(engine);
|
|
26
26
|
// export components for global engine
|
|
27
27
|
export * from './components/generated/global.gen';
|
|
28
28
|
export * from './components/generated/types.gen';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/ecs",
|
|
3
3
|
"description": "Decentraland ECS",
|
|
4
|
-
"version": "7.2.
|
|
4
|
+
"version": "7.2.4-5313621701.commit-5dea430",
|
|
5
5
|
"author": "DCL",
|
|
6
6
|
"bugs": "https://github.com/decentraland/ecs/issues",
|
|
7
7
|
"files": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
|
|
26
|
-
"
|
|
26
|
+
"start": "tsc -p tsconfig.json --watch"
|
|
27
27
|
},
|
|
28
28
|
"typedoc": {
|
|
29
29
|
"entryPoint": "./src/index.ts",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
},
|
|
34
34
|
"types": "./dist/index.d.ts",
|
|
35
35
|
"typings": "./dist/index.d.ts",
|
|
36
|
-
"commit": "
|
|
36
|
+
"commit": "5dea4305e0c13c7f24ec3d12c5004f37ec0cd479"
|
|
37
37
|
}
|