@thi.ng/ecs 0.7.193 → 0.7.195

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 CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 211 standalone projects, maintained as part
10
+ > This is one of 212 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -8,7 +8,7 @@ export declare class MemMappedComponent<K extends string> extends AComponent<K,
8
8
  readonly stride: number;
9
9
  cache?: ICache<TypedArray>;
10
10
  constructor(sparse: UIntArray, dense: UIntArray, opts: MemMappedComponentOpts<K>);
11
- packedValues(): Uint8Array<ArrayBufferLike> | Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike> | Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>;
11
+ packedValues(): Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike> | Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>;
12
12
  resize(pool: IMemPoolArray, cap: number): void;
13
13
  get(id: number): TypedArray | undefined;
14
14
  getIndex(i: number): TypedArray | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/ecs",
3
- "version": "0.7.193",
3
+ "version": "0.7.195",
4
4
  "description": "Entity Component System based around typed arrays & sparse sets",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,19 +39,19 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.12.10",
43
- "@thi.ng/associative": "^7.1.21",
44
- "@thi.ng/binary": "^3.4.68",
45
- "@thi.ng/checks": "^3.8.0",
46
- "@thi.ng/dcons": "^3.2.178",
47
- "@thi.ng/errors": "^2.5.50",
48
- "@thi.ng/idgen": "^2.2.84",
49
- "@thi.ng/logger": "^3.2.9",
50
- "@thi.ng/malloc": "^6.1.131",
51
- "@thi.ng/transducers": "^9.6.19"
42
+ "@thi.ng/api": "^8.12.11",
43
+ "@thi.ng/associative": "^7.1.23",
44
+ "@thi.ng/binary": "^3.6.0",
45
+ "@thi.ng/checks": "^3.8.1",
46
+ "@thi.ng/dcons": "^3.2.179",
47
+ "@thi.ng/errors": "^2.6.0",
48
+ "@thi.ng/idgen": "^2.2.85",
49
+ "@thi.ng/logger": "^3.2.10",
50
+ "@thi.ng/malloc": "^6.1.133",
51
+ "@thi.ng/transducers": "^9.6.20"
52
52
  },
53
53
  "devDependencies": {
54
- "@thi.ng/equiv": "^2.1.100",
54
+ "@thi.ng/equiv": "^2.1.101",
55
55
  "esbuild": "^0.27.0",
56
56
  "typedoc": "^0.28.14",
57
57
  "typescript": "^5.9.3"
@@ -124,5 +124,5 @@
124
124
  "status": "alpha",
125
125
  "year": 2019
126
126
  },
127
- "gitHead": "824bf9047b5a10f777c5c5b4aeecf0c750a22c75\n"
127
+ "gitHead": "e7a21b9d2a188fa04d4c893d8531c40fbc0f4c06\n"
128
128
  }