@thi.ng/cellular 0.2.33 → 0.2.35

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/CHANGELOG.md +1 -1
  2. package/README.md +2 -2
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-02T18:09:03Z
3
+ - **Last updated**: 2023-03-14T13:27:19Z
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/README.md CHANGED
@@ -255,8 +255,8 @@ ca.setPattern("mask", WIDTH / 4, WIDTH / 2, 1, 0, WIDTH / 8);
255
255
  // create color gradient to visualize the different cell states
256
256
  // and wrap as indexed color model for pixel buffer below...
257
257
  // references:
258
- // https://docs.thi.ng/umbrella/color/modules.html#multiColorGradient
259
- // https://docs.thi.ng/umbrella/pixel/modules.html#defIndexed
258
+ // https://docs.thi.ng/umbrella/color/functions/multiColorGradient.html
259
+ // https://docs.thi.ng/umbrella/pixel/functions/defIndexed.html
260
260
  const fmt = defIndexed(
261
261
  multiColorGradient(
262
262
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/cellular",
3
- "version": "0.2.33",
3
+ "version": "0.2.35",
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",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "scripts": {
27
27
  "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
28
+ "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
29
29
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
30
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
31
  "doc:readme": "yarn doc:stats && tools:readme",
@@ -34,18 +34,18 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.3",
38
- "@thi.ng/checks": "^3.3.9",
39
- "@thi.ng/errors": "^2.2.12",
40
- "@thi.ng/random": "^3.3.26",
41
- "@thi.ng/transducers": "^8.3.36"
37
+ "@thi.ng/api": "^8.7.4",
38
+ "@thi.ng/checks": "^3.3.10",
39
+ "@thi.ng/errors": "^2.2.13",
40
+ "@thi.ng/random": "^3.3.27",
41
+ "@thi.ng/transducers": "^8.3.38"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.34.2",
45
- "@thi.ng/testament": "^0.3.11",
46
- "rimraf": "^4.1.2",
44
+ "@microsoft/api-extractor": "^7.34.4",
45
+ "@thi.ng/testament": "^0.3.13",
46
+ "rimraf": "^4.4.0",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.23.24",
48
+ "typedoc": "^0.23.26",
49
49
  "typescript": "^4.9.5"
50
50
  },
51
51
  "keywords": [
@@ -92,5 +92,5 @@
92
92
  ],
93
93
  "year": 2022
94
94
  },
95
- "gitHead": "8342900eedc77bb09edb8c544804578b71f8acc6\n"
95
+ "gitHead": "cc46c097a3a173fb1ef41f57a858d03037063141\n"
96
96
  }