@dcl/ecs 1.0.0-20220511161823.commit-414f273 → 1.0.0-20220511175240.commit-459bc31
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/README.md +13 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ECS 7
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Installing dependencies
|
|
4
|
+
Run `make install`, this will run the `npm install` and other dependencies
|
|
5
|
+
|
|
6
|
+
## Building
|
|
7
|
+
Run `make build`
|
|
4
8
|
|
|
9
|
+
## Testing
|
|
10
|
+
Run `make test`, you can also debug the test in VS code, selecting the launch `Jest current file` or just `Jest` (this will run all test)
|
|
5
11
|
|
|
6
|
-
|
|
7
|
-
|
|
12
|
+
## Wishlist
|
|
13
|
+
Use this project as template for TypeScript libraries
|
|
14
|
+
- [x] as any MutableGroupOf
|
|
15
|
+
- [x] Tests for system
|
|
8
16
|
- [ ] use @dcl/ecs-math https://github.com/decentraland/ecs-math
|
|
9
17
|
- [ ] Basic Components ( Transform ) w/Tests
|
|
10
18
|
- [ ] Sync Component W/Tests
|
|
11
|
-
- [
|
|
19
|
+
- [x] CRDT System
|
|
12
20
|
- [ ] Kindof Scene Tests. Component & Systems. Maybe physics system? SolarSystem
|
|
13
21
|
- [ ] Integration with old ecs ( CRDT/Door Scene )
|
|
14
22
|
- [ ] RPC Transport. JSON { entityId, componentId, data: } vs Protocol Buffers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/ecs",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-20220511175240.commit-459bc31",
|
|
4
4
|
"description": "Decentraland ECS",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"files": [
|
|
42
42
|
"dist"
|
|
43
43
|
],
|
|
44
|
-
"commit": "
|
|
44
|
+
"commit": "459bc313d065cf48708becb60d5858d561e9b81d"
|
|
45
45
|
}
|