motely-wasm 14.3.1 → 14.3.3
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 +19 -0
- package/index.mjs +189 -8
- package/jaml.schema.json +4 -1
- package/package.json +1 -1
- package/types/bindings.g.d.ts +147 -90
package/README.md
CHANGED
|
@@ -95,6 +95,25 @@ NativeAOT-LLVM + SIMD. Verify "LLVM compilation to IR finished" in build output.
|
|
|
95
95
|
|
|
96
96
|
The `MONO_WASM:` prefix in console logs is Bootsharp's glue log string — this is **not** a Mono runtime build. Motely is NativeAOT-LLVM.
|
|
97
97
|
|
|
98
|
+
## Release Verification
|
|
99
|
+
|
|
100
|
+
Before publishing, verify the generated package, not a stale local wrapper:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
dotnet publish Motely.Wasm/Motely.Wasm.csproj -c Release
|
|
104
|
+
cd Motely.Wasm/e2e
|
|
105
|
+
npm install ../../motely-wasm/motely-wasm-<version>.tgz
|
|
106
|
+
node release-smoke.mjs
|
|
107
|
+
node jamlyzer-preview-smoke.mjs
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
The release smoke must prove:
|
|
111
|
+
|
|
112
|
+
- `motely-wasm/package.json` version equals `MotelyWasm.getVersion()`
|
|
113
|
+
- `MotelyWasm.getJamlSchema().version` equals the package version
|
|
114
|
+
- the schema does not expose removed aliases such as `mixedJoker`
|
|
115
|
+
- generated Bootsharp exports boot and execute from the packed artifact
|
|
116
|
+
|
|
98
117
|
## License
|
|
99
118
|
|
|
100
119
|
MIT
|