@dcl/ecs 7.0.6-4006744889.commit-c6aff5f → 7.0.6-4009803567.commit-112733c
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/components/extended/MeshCollider.js +1 -3
- package/dist/engine/component.js +2 -10
- package/dist/engine/entity.js +2 -6
- package/dist/engine/input.js +1 -2
- package/dist/runtime/crc.js +28 -42
- package/dist/runtime/invariant.js +1 -3
- package/dist/systems/crdt/index.js +12 -34
- package/dist/systems/events.js +1 -1
- package/package.json +4 -4
|
@@ -3,9 +3,7 @@ export function defineMeshColliderComponent(engine) {
|
|
|
3
3
|
const theComponent = MeshCollider(engine);
|
|
4
4
|
function getCollisionMask(layers) {
|
|
5
5
|
if (Array.isArray(layers)) {
|
|
6
|
-
return layers
|
|
7
|
-
.map((item) => item)
|
|
8
|
-
.reduce((prev, item) => prev | item, 0);
|
|
6
|
+
return layers.map((item) => item).reduce((prev, item) => prev | item, 0);
|
|
9
7
|
}
|
|
10
8
|
else if (layers) {
|
|
11
9
|
return layers;
|
package/dist/engine/component.js
CHANGED
|
@@ -46,21 +46,13 @@ export function createComponentDefinitionFromSchema(componentName, componentId,
|
|
|
46
46
|
if (component) {
|
|
47
47
|
throw new Error(`[create] Component ${componentName} for ${entity} already exists`);
|
|
48
48
|
}
|
|
49
|
-
const usedValue = value === undefined
|
|
50
|
-
? schema.create()
|
|
51
|
-
: schema.extend
|
|
52
|
-
? schema.extend(value)
|
|
53
|
-
: value;
|
|
49
|
+
const usedValue = value === undefined ? schema.create() : schema.extend ? schema.extend(value) : value;
|
|
54
50
|
data.set(entity, usedValue);
|
|
55
51
|
dirtyIterator.add(entity);
|
|
56
52
|
return usedValue;
|
|
57
53
|
},
|
|
58
54
|
createOrReplace(entity, value) {
|
|
59
|
-
const usedValue = value === undefined
|
|
60
|
-
? schema.create()
|
|
61
|
-
: schema.extend
|
|
62
|
-
? schema.extend(value)
|
|
63
|
-
: value;
|
|
55
|
+
const usedValue = value === undefined ? schema.create() : schema.extend ? schema.extend(value) : value;
|
|
64
56
|
data.set(entity, usedValue);
|
|
65
57
|
dirtyIterator.add(entity);
|
|
66
58
|
return usedValue;
|
package/dist/engine/entity.js
CHANGED
|
@@ -17,18 +17,14 @@ export var EntityUtils;
|
|
|
17
17
|
* @returns [entityNumber, entityVersion]
|
|
18
18
|
*/
|
|
19
19
|
function fromEntityId(entityId) {
|
|
20
|
-
return [
|
|
21
|
-
(entityId & MAX_U16) >>> 0,
|
|
22
|
-
(((entityId & MASK_UPPER_16_ON_32) >> 16) & MAX_U16) >>> 0
|
|
23
|
-
];
|
|
20
|
+
return [(entityId & MAX_U16) >>> 0, (((entityId & MASK_UPPER_16_ON_32) >> 16) & MAX_U16) >>> 0];
|
|
24
21
|
}
|
|
25
22
|
EntityUtils.fromEntityId = fromEntityId;
|
|
26
23
|
/**
|
|
27
24
|
* @returns compound number from entityNumber and entityVerison
|
|
28
25
|
*/
|
|
29
26
|
function toEntityId(entityNumber, entityVersion) {
|
|
30
|
-
return (((entityNumber & MAX_U16) | ((entityVersion & MAX_U16) << 16)) >>>
|
|
31
|
-
0);
|
|
27
|
+
return (((entityNumber & MAX_U16) | ((entityVersion & MAX_U16) << 16)) >>> 0);
|
|
32
28
|
}
|
|
33
29
|
EntityUtils.toEntityId = toEntityId;
|
|
34
30
|
})(EntityUtils || (EntityUtils = {}));
|
package/dist/engine/input.js
CHANGED
|
@@ -84,8 +84,7 @@ export function createInputSystem(engine) {
|
|
|
84
84
|
return null;
|
|
85
85
|
const state = InternalInputStateComponent.get(engine.RootEntity);
|
|
86
86
|
// If the DOWN command has happen before the UP commands, it means that that a clicked has happen
|
|
87
|
-
if (down.timestamp < up.timestamp &&
|
|
88
|
-
up.timestamp > state.timestampLastUpdate) {
|
|
87
|
+
if (down.timestamp < up.timestamp && up.timestamp > state.timestampLastUpdate) {
|
|
89
88
|
InternalInputStateComponent.getMutable(engine.RootEntity).currentTimestamp = Math.max(up.timestamp, state.currentTimestamp);
|
|
90
89
|
return { up, down };
|
|
91
90
|
}
|
package/dist/runtime/crc.js
CHANGED
|
@@ -1,46 +1,32 @@
|
|
|
1
1
|
const CRC_TABLE = new Int32Array([
|
|
2
|
-
0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f,
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55,
|
|
31
|
-
0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
|
|
32
|
-
0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28,
|
|
33
|
-
0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d,
|
|
34
|
-
0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f,
|
|
35
|
-
0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38,
|
|
36
|
-
0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
|
|
37
|
-
0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777,
|
|
38
|
-
0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69,
|
|
39
|
-
0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2,
|
|
40
|
-
0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc,
|
|
41
|
-
0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
|
|
42
|
-
0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693,
|
|
43
|
-
0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94,
|
|
2
|
+
0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832,
|
|
3
|
+
0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2,
|
|
4
|
+
0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a,
|
|
5
|
+
0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172,
|
|
6
|
+
0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
|
|
7
|
+
0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423,
|
|
8
|
+
0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab,
|
|
9
|
+
0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433,
|
|
10
|
+
0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4,
|
|
11
|
+
0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
|
|
12
|
+
0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074,
|
|
13
|
+
0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0,
|
|
14
|
+
0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525,
|
|
15
|
+
0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81,
|
|
16
|
+
0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
|
|
17
|
+
0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1,
|
|
18
|
+
0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76,
|
|
19
|
+
0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e,
|
|
20
|
+
0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6,
|
|
21
|
+
0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
|
|
22
|
+
0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7,
|
|
23
|
+
0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f,
|
|
24
|
+
0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7,
|
|
25
|
+
0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777,
|
|
26
|
+
0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
|
|
27
|
+
0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc,
|
|
28
|
+
0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330,
|
|
29
|
+
0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94,
|
|
44
30
|
0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
|
|
45
31
|
]);
|
|
46
32
|
function _crc32(buf, previous) {
|
|
@@ -42,9 +42,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
42
42
|
...header,
|
|
43
43
|
...message,
|
|
44
44
|
transportId,
|
|
45
|
-
messageBuffer: buffer
|
|
46
|
-
.buffer()
|
|
47
|
-
.subarray(offset, buffer.currentReadOffset())
|
|
45
|
+
messageBuffer: buffer.buffer().subarray(offset, buffer.currentReadOffset())
|
|
48
46
|
});
|
|
49
47
|
}
|
|
50
48
|
else if (header.type === CrdtMessageType.PUT_COMPONENT) {
|
|
@@ -53,9 +51,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
53
51
|
...header,
|
|
54
52
|
...message,
|
|
55
53
|
transportId,
|
|
56
|
-
messageBuffer: buffer
|
|
57
|
-
.buffer()
|
|
58
|
-
.subarray(offset, buffer.currentReadOffset())
|
|
54
|
+
messageBuffer: buffer.buffer().subarray(offset, buffer.currentReadOffset())
|
|
59
55
|
});
|
|
60
56
|
}
|
|
61
57
|
else if (header.type === CrdtMessageType.DELETE_ENTITY) {
|
|
@@ -64,9 +60,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
64
60
|
...header,
|
|
65
61
|
...message,
|
|
66
62
|
transportId,
|
|
67
|
-
messageBuffer: buffer
|
|
68
|
-
.buffer()
|
|
69
|
-
.subarray(offset, buffer.currentReadOffset())
|
|
63
|
+
messageBuffer: buffer.buffer().subarray(offset, buffer.currentReadOffset())
|
|
70
64
|
});
|
|
71
65
|
// Unknown message, we skip it
|
|
72
66
|
}
|
|
@@ -141,17 +135,13 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
141
135
|
const data = new ReadWriteByteBuffer(msg.data);
|
|
142
136
|
component.upsertFromBinary(msg.entityId, data, false);
|
|
143
137
|
}
|
|
144
|
-
onProcessEntityComponentChange &&
|
|
145
|
-
onProcessEntityComponentChange(msg.entityId, msg.type, component);
|
|
138
|
+
onProcessEntityComponentChange && onProcessEntityComponentChange(msg.entityId, msg.type, component);
|
|
146
139
|
break;
|
|
147
140
|
// CRDT outdated message. Resend this message to the transport
|
|
148
141
|
// To do this we add this message to a queue that will be processed at the end of the update tick
|
|
149
142
|
case ProcessMessageResultType.StateOutdatedData:
|
|
150
143
|
case ProcessMessageResultType.StateOutdatedTimestamp:
|
|
151
|
-
const current = crdtClient
|
|
152
|
-
.getState()
|
|
153
|
-
.components.get(msg.componentId)
|
|
154
|
-
?.get(msg.entityId);
|
|
144
|
+
const current = crdtClient.getState().components.get(msg.componentId)?.get(msg.entityId);
|
|
155
145
|
if (current) {
|
|
156
146
|
const offset = bufferForOutdated.currentWriteOffset();
|
|
157
147
|
const ts = current.timestamp;
|
|
@@ -163,9 +153,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
163
153
|
}
|
|
164
154
|
outdatedMessages.push({
|
|
165
155
|
...msg,
|
|
166
|
-
messageBuffer: bufferForOutdated
|
|
167
|
-
.buffer()
|
|
168
|
-
.subarray(offset, bufferForOutdated.currentWriteOffset())
|
|
156
|
+
messageBuffer: bufferForOutdated.buffer().subarray(offset, bufferForOutdated.currentWriteOffset())
|
|
169
157
|
});
|
|
170
158
|
}
|
|
171
159
|
break;
|
|
@@ -188,8 +176,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
188
176
|
definition.deleteFrom(entity, false);
|
|
189
177
|
}
|
|
190
178
|
engine.entityContainer.updateRemovedEntity(entity);
|
|
191
|
-
onProcessEntityComponentChange &&
|
|
192
|
-
onProcessEntityComponentChange(entity, CrdtMessageType.DELETE_ENTITY);
|
|
179
|
+
onProcessEntityComponentChange && onProcessEntityComponentChange(entity, CrdtMessageType.DELETE_ENTITY);
|
|
193
180
|
}
|
|
194
181
|
}
|
|
195
182
|
/**
|
|
@@ -217,9 +204,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
217
204
|
else {
|
|
218
205
|
entitySet.push(entity);
|
|
219
206
|
onProcessEntityComponentChange &&
|
|
220
|
-
onProcessEntityComponentChange(entity, componentValue === null
|
|
221
|
-
? CrdtMessageType.DELETE_COMPONENT
|
|
222
|
-
: CrdtMessageType.PUT_COMPONENT, component);
|
|
207
|
+
onProcessEntityComponentChange(entity, componentValue === null ? CrdtMessageType.DELETE_COMPONENT : CrdtMessageType.PUT_COMPONENT, component);
|
|
223
208
|
}
|
|
224
209
|
}
|
|
225
210
|
}
|
|
@@ -260,9 +245,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
260
245
|
}
|
|
261
246
|
crdtMessages.push({
|
|
262
247
|
...transportMessage,
|
|
263
|
-
messageBuffer: buffer
|
|
264
|
-
.buffer()
|
|
265
|
-
.subarray(offset, buffer.currentWriteOffset())
|
|
248
|
+
messageBuffer: buffer.buffer().subarray(offset, buffer.currentWriteOffset())
|
|
266
249
|
});
|
|
267
250
|
}
|
|
268
251
|
}
|
|
@@ -275,9 +258,7 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
275
258
|
crdtMessages.push({
|
|
276
259
|
type: CrdtMessageType.DELETE_ENTITY,
|
|
277
260
|
entityId,
|
|
278
|
-
messageBuffer: buffer
|
|
279
|
-
.buffer()
|
|
280
|
-
.subarray(offset, buffer.currentWriteOffset())
|
|
261
|
+
messageBuffer: buffer.buffer().subarray(offset, buffer.currentWriteOffset())
|
|
281
262
|
});
|
|
282
263
|
}
|
|
283
264
|
// Send CRDT messages to transports
|
|
@@ -301,14 +282,11 @@ export function crdtSceneSystem(engine, onProcessEntityComponentChange) {
|
|
|
301
282
|
}
|
|
302
283
|
// Then we send all the new crdtMessages that the transport needs to process
|
|
303
284
|
for (const message of crdtMessages) {
|
|
304
|
-
if (message.transportId !== transportIndex &&
|
|
305
|
-
transport.filter(message)) {
|
|
285
|
+
if (message.transportId !== transportIndex && transport.filter(message)) {
|
|
306
286
|
transportBuffer.writeBuffer(message.messageBuffer, false);
|
|
307
287
|
}
|
|
308
288
|
}
|
|
309
|
-
const message = transportBuffer.currentWriteOffset()
|
|
310
|
-
? transportBuffer.toBinary()
|
|
311
|
-
: new Uint8Array([]);
|
|
289
|
+
const message = transportBuffer.currentWriteOffset() ? transportBuffer.toBinary() : new Uint8Array([]);
|
|
312
290
|
await transport.send(message);
|
|
313
291
|
}
|
|
314
292
|
}
|
package/dist/systems/events.js
CHANGED
|
@@ -15,7 +15,7 @@ export function createPointerEventSystem(engine, inputSystem) {
|
|
|
15
15
|
});
|
|
16
16
|
const eventsMap = new Map();
|
|
17
17
|
function getEvent(entity) {
|
|
18
|
-
return
|
|
18
|
+
return eventsMap.get(entity) || eventsMap.set(entity, new Map()).get(entity);
|
|
19
19
|
}
|
|
20
20
|
function setPointerEvent(entity, type, opts) {
|
|
21
21
|
if (opts.hoverText || opts.showFeedback) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/ecs",
|
|
3
|
-
"version": "7.0.6-
|
|
3
|
+
"version": "7.0.6-4009803567.commit-112733c",
|
|
4
4
|
"description": "Decentraland ECS",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"ts-proto": "^1.112.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dcl/crdt": "7.0.6-
|
|
30
|
+
"@dcl/crdt": "7.0.6-4009803567.commit-112733c",
|
|
31
31
|
"@dcl/js-runtime": "file:../js-runtime",
|
|
32
|
-
"@dcl/protocol": "1.0.0-
|
|
32
|
+
"@dcl/protocol": "1.0.0-4009547712.commit-472ea24"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
35
|
"dist",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"displayName": "ECS",
|
|
42
42
|
"tsconfig": "./tsconfig.json"
|
|
43
43
|
},
|
|
44
|
-
"commit": "
|
|
44
|
+
"commit": "112733c7745c97e809910baa08e09e73a09fb8e3"
|
|
45
45
|
}
|