@turing-machine-js/builder 6.4.0 → 7.0.0-alpha.1

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -43,7 +43,7 @@ The state-table format is intentionally minimal. It does **not** support:
43
43
 
44
44
  - **OR-patterns** (matching multiple current symbols with one transition row). For `tapeBlock.symbol('^10$')` style patterns, use the raw `@turing-machine-js/machine` API.
45
45
  - **Multi-tape machines** (`buildMachine` is single-tape only).
46
- - **`withOverrodeHaltState` composition** (the subroutine-call mechanism). For composed machines like `library-binary-numbers`'s `minusOne`, use the raw API.
46
+ - **`withOverriddenHaltState` composition** (the subroutine-call mechanism). For composed machines like `library-binary-numbers`'s `minusOne`, use the raw API.
47
47
 
48
48
  If you need any of the above, the inline state-table example in [`@turing-machine-js/machine`'s README](../machine/README.md) shows how to write your own `buildMachine`-equivalent in ~30 lines, and you can extend it to fit your case.
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turing-machine-js/builder",
3
- "version": "6.4.0",
3
+ "version": "7.0.0-alpha.1",
4
4
  "description": "A turing machine builder — declarative state-table construction. Not actively developed by the author; the same state-table pattern is also shown as an inline example in @turing-machine-js/machine's README. Contributions welcome.",
5
5
  "engines": {
6
6
  "npm": ">=7.0.0"
@@ -25,7 +25,7 @@
25
25
  "builder"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@turing-machine-js/machine": "^6.0.0"
28
+ "@turing-machine-js/machine": "^7.0.0-alpha.1"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "tsc --build --verbose tsconfig.build.json && node ../../scripts/build-node-entries.mjs --package=@turing-machine-js/builder",
@@ -42,5 +42,5 @@
42
42
  "default": "./dist/index.mjs"
43
43
  }
44
44
  },
45
- "gitHead": "a8228b8a5f7f9acd1f6219af80db86368848cdbc"
45
+ "gitHead": "0d52695e614d12547ba73992c00cd48732b1e8c1"
46
46
  }