@onda-lang/wasm-compiler 0.8.0 → 0.8.2
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 +6 -0
- package/THIRD_PARTY_NOTICES.md +4 -2
- package/dist/backend/compiler/core.js +2544 -0
- package/dist/backend/compiler/index.js +1900 -0
- package/dist/backend/compiler/lowering.js +2297 -0
- package/dist/backend/compiler/shared.js +247 -0
- package/dist/backend/index.js +1 -6903
- package/dist/build.json +3 -3
- package/dist/frontend/onda_compiler_web_bg.wasm +0 -0
- package/dist/frontend/package.json +2 -2
- package/dist/licenses/ONDA-LICENSE.txt +21 -0
- package/dist/licenses/RUST-DEPENDENCIES.txt +953 -0
- package/dist/version.js +1 -1
- package/package.json +2 -2
- /package/dist/licenses/{BINARYEN-LICENSE → BINARYEN-LICENSE.txt} +0 -0
- /package/dist/licenses/{LIBM-LICENSE → LIBM-LICENSE.txt} +0 -0
package/README.md
CHANGED
|
@@ -232,3 +232,9 @@ version. Run `scripts/sync-versions.sh` or `scripts/sync-versions.ps1` after cha
|
|
|
232
232
|
The underlying `scripts/sync-package-versions.mjs` updates the workspace-owned `Cargo.lock` entries,
|
|
233
233
|
discovers every `@onda-lang/*` package, and synchronizes its manifest and lockfile. Compiler builds
|
|
234
234
|
and release jobs run it automatically; `ONDA_VERSION` is generated into the packaged distribution.
|
|
235
|
+
|
|
236
|
+
## Building from a source checkout
|
|
237
|
+
|
|
238
|
+
In addition to Rust, Node.js, and `wasm-pack`, source builds require `cargo-about` 0.9.2 with its
|
|
239
|
+
`cli` feature. The build packages complete Rust dependency license text generated from the locked
|
|
240
|
+
cross-platform workspace graph.
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -3,9 +3,11 @@
|
|
|
3
3
|
The packaged compiler includes the following third-party components:
|
|
4
4
|
|
|
5
5
|
- Binaryen.js 130.0.0, licensed under Apache-2.0. The complete license is shipped as
|
|
6
|
-
`dist/licenses/BINARYEN-LICENSE`.
|
|
6
|
+
`dist/licenses/BINARYEN-LICENSE.txt`.
|
|
7
7
|
- The Onda WebAssembly math kernel uses `libm` 0.2.16, licensed under MIT. The complete license is
|
|
8
|
-
shipped as `dist/licenses/LIBM-LICENSE`.
|
|
8
|
+
shipped as `dist/licenses/LIBM-LICENSE.txt`.
|
|
9
|
+
- The compiler frontend statically includes Rust crates. Their attributions and complete license
|
|
10
|
+
texts are shipped as `dist/licenses/RUST-DEPENDENCIES.txt`.
|
|
9
11
|
|
|
10
12
|
The generated processor artifacts contain only the required closure of the math kernel. They do
|
|
11
13
|
not contain Binaryen itself.
|