@sebastienrousseau/noyalib-wasm 0.0.30 → 0.0.31

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
@@ -14,11 +14,11 @@
14
14
  </p>
15
15
 
16
16
  <p align="center">
17
- <a href="https://github.com/sebastienrousseau/noyalib/actions"><img src="https://img.shields.io/github/actions/workflow/status/sebastienrousseau/noyalib/ci.yml?style=for-the-badge&logo=github" alt="Build" /></a>
17
+ <a href="https://github.com/sebastienrousseau/noyalib-wasm/actions"><img src="https://img.shields.io/github/actions/workflow/status/sebastienrousseau/noyalib-wasm/ci.yml?style=for-the-badge&logo=github" alt="Build" /></a>
18
18
  <a href="https://www.npmjs.com/package/@sebastienrousseau/noyalib-wasm"><img src="https://img.shields.io/npm/v/@sebastienrousseau/noyalib-wasm?style=for-the-badge&color=fc8d62&logo=npm" alt="npm" /></a>
19
19
  <a href="https://docs.rs/noyalib-wasm"><img src="https://img.shields.io/badge/docs.rs-noyalib--wasm-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" alt="Docs.rs" /></a>
20
20
  <a href="https://bundlephobia.com/package/@sebastienrousseau/noyalib-wasm"><img src="https://img.shields.io/bundlephobia/minzip/@sebastienrousseau/noyalib-wasm?style=for-the-badge&color=informational" alt="Bundle size" /></a>
21
- <a href="https://scorecard.dev/viewer/?uri=github.com/sebastienrousseau/noyalib"><img src="https://img.shields.io/ossf-scorecard/github.com/sebastienrousseau/noyalib?style=for-the-badge&label=OpenSSF%20Scorecard&logo=openssf" alt="OpenSSF Scorecard" /></a>
21
+ <a href="https://scorecard.dev/viewer/?uri=github.com/sebastienrousseau/noyalib-wasm"><img src="https://img.shields.io/ossf-scorecard/github.com/sebastienrousseau/noyalib-wasm?style=for-the-badge&label=OpenSSF%20Scorecard&logo=openssf" alt="OpenSSF Scorecard" /></a>
22
22
  </p>
23
23
 
24
24
  ---
@@ -63,7 +63,7 @@ wasm-pack build --release --target bundler
63
63
  > released in strict lockstep with the parent
64
64
  > [`noyalib`](https://github.com/sebastienrousseau/noyalib) at
65
65
  > the same version. See
66
- > [ADR-0005](https://github.com/sebastienrousseau/noyalib/blob/main/doc/adr/0005-workspace-split.md)
66
+ > [ADR-0005](https://github.com/sebastienrousseau/noyalib/blob/main/docs/adr/0005-workspace-split.md)
67
67
  > for the rationale and rollback recipe.
68
68
 
69
69
  ---
@@ -237,17 +237,18 @@ produced it. Verify via:
237
237
  npm view @sebastienrousseau/noyalib-wasm provenance
238
238
  ```
239
239
 
240
- The underlying `.wasm` is also signed with cosign keyless
241
- alongside every release; the verify command is identical to
242
- the source crate's:
240
+ GitHub Releases ship the crate archive and a CycloneDX SBOM,
241
+ each with a sigstore bundle and checksums. A standalone signed
242
+ `.wasm` artefact is not attached to releases; the npm package
243
+ (with its provenance attestation, above) is the distribution
244
+ channel for the compiled bundle. Verify a release artefact:
243
245
 
244
246
  ```sh
245
247
  cosign verify-blob \
246
- --certificate-identity-regexp 'https://github.com/sebastienrousseau/noyalib/' \
248
+ --certificate-identity-regexp 'https://github.com/sebastienrousseau/noyalib-wasm/' \
247
249
  --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
248
- --certificate noyalib_wasm_bg.wasm.pem \
249
- --signature noyalib_wasm_bg.wasm.sig \
250
- noyalib_wasm_bg.wasm
250
+ --bundle <artefact>.bundle \
251
+ <artefact>
251
252
  ```
252
253
 
253
254
  Full cookbook: [`pkg/VERIFY.md`](https://github.com/sebastienrousseau/noyalib/blob/main/pkg/VERIFY.md).
@@ -307,7 +308,7 @@ with headroom for the dependency tree. No current dependency *requires*
307
308
  1.86 — this crate still compiles on 1.85. The whole lockstep set,
308
309
  including the core `noyalib` library, shares this floor. CI verifies the floor on every PR via
309
310
  the `Per-crate MSRV` workflow job. The bump policy lives in
310
- [`doc/POLICIES.md`](https://github.com/sebastienrousseau/noyalib/blob/main/doc/POLICIES.md#1-msrv-minimum-supported-rust-version).
311
+ [`docs/POLICIES.md`](https://github.com/sebastienrousseau/noyalib/blob/main/docs/POLICIES.md#1-msrv-minimum-supported-rust-version).
311
312
 
312
313
  **Tier-1 WASM targets** (CI-verified each PR via
313
314
  `wasm-pack test --node`): `wasm32-unknown-unknown` produced
@@ -320,14 +321,21 @@ consume the `bundler` target.
320
321
 
321
322
  ## Documentation
322
323
 
324
+ The four entry points, identical across every repo in the family:
325
+
326
+ - **[User Manual](https://sebastienrousseau.github.io/noyalib/manual/)** — the rendered book: user guide, migrations, architecture, policies, ADRs
327
+ - **[API reference](https://docs.rs/noyalib-wasm)** — rustdoc on docs.rs
328
+ - **[Developer docs](DEVELOPMENT.md)** — this repo's dev entry point, pointing at the family guide
329
+ - **[Ecosystem map](https://github.com/sebastienrousseau/noyalib/blob/main/docs/ECOSYSTEM.md)** — the six crates, the lockstep model, the scorecard
330
+
323
331
  - **Engineering policies** (MSRV, SemVer, security, performance, concurrency, platform support, feature flags):
324
- [`doc/POLICIES.md`](https://github.com/sebastienrousseau/noyalib/blob/main/doc/POLICIES.md)
332
+ [`docs/POLICIES.md`](https://github.com/sebastienrousseau/noyalib/blob/main/docs/POLICIES.md)
325
333
  - **Security policy**:
326
334
  [`SECURITY.md`](https://github.com/sebastienrousseau/noyalib/blob/main/SECURITY.md)
327
335
  - **JS API reference**:
328
- [`doc/js-api.md`](https://github.com/sebastienrousseau/noyalib/blob/main/crates/noyalib-wasm/doc/js-api.md)
336
+ [`docs/js-api.md`](https://github.com/sebastienrousseau/noyalib/blob/main/crates/noyalib-wasm/doc/js-api.md)
329
337
  - **Bundling (Vite, Webpack, Next.js, Cloudflare Workers, Deno, Bun)**:
330
- [`doc/bundling.md`](https://github.com/sebastienrousseau/noyalib/blob/main/crates/noyalib-wasm/doc/bundling.md)
338
+ [`docs/bundling.md`](https://github.com/sebastienrousseau/noyalib/blob/main/crates/noyalib-wasm/doc/bundling.md)
331
339
  - **npm package**:
332
340
  <https://www.npmjs.com/package/@sebastienrousseau/noyalib-wasm>
333
341
  - **API reference (rustdoc)**: <https://docs.rs/noyalib-wasm>
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Sebastien Rousseau <sebastian.rousseau@gmail.com>"
6
6
  ],
7
7
  "description": "WebAssembly (wasm-bindgen) bindings for the noyalib YAML library — browser-ready parse / serialise / lossless edit",
8
- "version": "0.0.30",
8
+ "version": "0.0.31",
9
9
  "license": "MIT OR Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",