@thi.ng/cellular 0.2.129 → 0.2.131

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.
Files changed (3) hide show
  1. package/1d.d.ts +2 -2
  2. package/CHANGELOG.md +1 -1
  3. package/package.json +11 -11
package/1d.d.ts CHANGED
@@ -146,8 +146,8 @@ export declare class MultiCA1D implements IClear {
146
146
  gens: Uint8Array[];
147
147
  prob: Float32Array;
148
148
  constructor(configs: CASpec1D[], width: number, wrap?: boolean);
149
- get current(): Uint8Array;
150
- get previous(): Uint8Array;
149
+ get current(): Uint8Array<ArrayBufferLike>;
150
+ get previous(): Uint8Array<ArrayBufferLike>;
151
151
  clear(): void;
152
152
  clearTarget(target: Target): void;
153
153
  resize(width: number): void;
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-11-10T17:11:51Z
3
+ - **Last updated**: 2024-12-12T10:11:58Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/cellular",
3
- "version": "0.2.129",
3
+ "version": "0.2.131",
4
4
  "description": "Highly customizable 1D cellular automata, shared env, multiple rules, arbitrary sized/shaped neighborhoods, short term memory, cell states etc.",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,18 +36,18 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.12",
40
- "@thi.ng/arrays": "^2.10.5",
41
- "@thi.ng/checks": "^3.6.14",
42
- "@thi.ng/errors": "^2.5.18",
43
- "@thi.ng/random": "^4.1.3",
44
- "@thi.ng/transducers": "^9.2.8"
39
+ "@thi.ng/api": "^8.11.14",
40
+ "@thi.ng/arrays": "^2.10.7",
41
+ "@thi.ng/checks": "^3.6.16",
42
+ "@thi.ng/errors": "^2.5.20",
43
+ "@thi.ng/random": "^4.1.5",
44
+ "@thi.ng/transducers": "^9.2.10"
45
45
  },
46
46
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.47.9",
47
+ "@microsoft/api-extractor": "^7.48.0",
48
48
  "esbuild": "^0.24.0",
49
- "typedoc": "^0.26.7",
50
- "typescript": "^5.6.2"
49
+ "typedoc": "^0.27.4",
50
+ "typescript": "^5.7.2"
51
51
  },
52
52
  "keywords": [
53
53
  "1d",
@@ -97,5 +97,5 @@
97
97
  "year": 2022,
98
98
  "screenshot": "cellular/hero.png"
99
99
  },
100
- "gitHead": "ef89090bb19fc5bca23be5da8cfce05b82ff4ad1\n"
100
+ "gitHead": "34ac95538d96f046090fef5fd3a1dc36d54663d5\n"
101
101
  }