motely-wasm 24.1.1 → 24.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# motely-wasm
|
|
2
2
|
|
|
3
|
-
`motely-wasm` is the Bootsharp/WebAssembly package for MotelyJAML: the production Balatro seed-search engine, JAML loader, JAMLyzer analyzer,
|
|
3
|
+
`motely-wasm` is the Bootsharp/WebAssembly package for MotelyJAML: the production Balatro seed-search engine, JAML loader, JAMLyzer analyzer, one-line JAML parser, and selected seed utilities exposed to JavaScript.
|
|
4
4
|
|
|
5
5
|
JAML is Jimbo's Ante Markup Language. YAML and JSON are the concrete syntaxes; both load to the same typed `JamlConfig` that the engine executes.
|
|
6
6
|
|
|
@@ -167,9 +167,9 @@ A JAML with zero must/should/mustNot clauses (deck, stake, seeds only — the re
|
|
|
167
167
|
|
|
168
168
|
Stream walkers that thread `ref` state are C#-only shapes; their state-threaded twins (value in, value out) are the JS-facing equivalents.
|
|
169
169
|
|
|
170
|
-
##
|
|
170
|
+
## One-line JAML
|
|
171
171
|
|
|
172
|
-
|
|
172
|
+
A JAML clause can be written as one human line — the terse spelling of a clause, so it lives on `MotelyJaml`. Both calls delegate to the engine's `JamlLine` parser/formatter so packed item identity stays canonical.
|
|
173
173
|
|
|
174
174
|
```js
|
|
175
175
|
MotelyJaml.validateLine("Eternal Blueprint in antes 1 or 2"); // null
|
|
@@ -220,7 +220,7 @@ The package test suite mirrors the C# behavior tests that are meaningful through
|
|
|
220
220
|
- real list/random/sequential searches
|
|
221
221
|
- Jimmolate accept/reject predicate behavior against the live context
|
|
222
222
|
- AND scoring, default source fallback, Hieroglyph pack-slot reachability, and luck-source regressions
|
|
223
|
-
-
|
|
223
|
+
- One-line JAML canonicalization
|
|
224
224
|
- seed math and keyword utility parity
|
|
225
225
|
|
|
226
226
|
Corpus-file loading and live ref-struct seed-router introspection remain native test concerns rather than JavaScript package behavior.
|