@turing-machine-js/library-binary-numbers 6.0.1 → 6.2.0
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 +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -88,7 +88,7 @@ The extra states this library spends are mostly bookkeeping for the `^`/`$` mark
|
|
|
88
88
|
|
|
89
89
|
For a teaching context, both libraries shipping in parallel makes the cost of representation choices tangible.
|
|
90
90
|
|
|
91
|
-
See the rendered Mermaid graphs for every state in [`states.md`](states.md)
|
|
91
|
+
See the rendered Mermaid graphs for every state in [`states.md`](states.md) — regenerated via `npm run docs:states` from the repo root.
|
|
92
92
|
|
|
93
93
|
## Links
|
|
94
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turing-machine-js/library-binary-numbers",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "A standard library for working with binary numbers",
|
|
5
5
|
"engines": {
|
|
6
6
|
"npm": ">=7.0.0"
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@turing-machine-js/machine": "^6.0.0"
|
|
31
31
|
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc --build --verbose tsconfig.build.json && node ../../scripts/build-node-entries.mjs --package=@turing-machine-js/library-binary-numbers",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
32
36
|
"main": "dist/index.cjs",
|
|
33
37
|
"module": "dist/index.mjs",
|
|
34
38
|
"types": "dist/index.d.ts",
|
|
@@ -40,5 +44,5 @@
|
|
|
40
44
|
"default": "./dist/index.mjs"
|
|
41
45
|
}
|
|
42
46
|
},
|
|
43
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "a6a51bbf2db3d4ae692431b13956d9397df0b9e0"
|
|
44
48
|
}
|