brepjs 18.3.2 → 18.4.1

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.
Files changed (2) hide show
  1. package/README.md +11 -11
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ CAD modeling for JavaScript.
6
6
  [![CI](https://github.com/andymai/brepjs/actions/workflows/ci.yml/badge.svg)](https://github.com/andymai/brepjs/actions/workflows/ci.yml)
7
7
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](./LICENSE)
8
8
 
9
- **[Getting Started](./docs/getting-started.md)** · **[Cheat Sheet](./docs/cheat-sheet.md)** · **[Docs](https://docs.brepjs.dev/)**
9
+ **[Getting Started](./docs/getting-started.md)** · **[Cheat Sheet](./docs/cheat-sheet.md)** · **[Docs](https://brepjs.dev/)**
10
10
 
11
11
  Shapes are exact mathematical boundaries - not triangle meshes - so booleans are precise, measurements are real, and you can export to STEP. TypeScript types prove the geometry is valid at compile time.
12
12
 
@@ -69,16 +69,16 @@ Imports flow downward only. Boundaries are enforced in CI.
69
69
 
70
70
  The chapter-based guide is the recommended starting point:
71
71
 
72
- - **[Why brepjs](https://docs.brepjs.dev/introduction/why-brepjs)** — what makes it different, who it's for
73
- - **[Install & Initialize](https://docs.brepjs.dev/getting-started/install)** — three init styles, bundler notes
74
- - **[Your First Solid](https://docs.brepjs.dev/getting-started/first-solid)** — the canonical drill-fillet-export workflow
75
- - **[Cheat Sheet](https://docs.brepjs.dev/getting-started/cheat-sheet)** — single-page reference
76
- - **[Core Concepts](https://docs.brepjs.dev/concepts/brep-vs-mesh)** — B-Rep, topology, types, kernels, tolerance
77
- - **[Common Tasks](https://docs.brepjs.dev/tasks/booleans)** — booleans, fillets, sketching, lofts, sweeps, finders, measurement, IO
78
- - **[Three.js Integration](https://docs.brepjs.dev/integration/threejs)** — meshing and rendering
79
- - **[Migration](https://docs.brepjs.dev/migration/replicad)** — coming from Replicad, OpenSCAD, or Three.js
80
- - **[Extending brepjs](https://docs.brepjs.dev/extending/architecture)** — custom kernels, custom operations, architecture
81
- - **[Reference](https://docs.brepjs.dev/reference/glossary)** — glossary, function lookup, error codes, ADRs
72
+ - **[Why brepjs](https://brepjs.dev/introduction/why-brepjs)** — what makes it different, who it's for
73
+ - **[Install & Initialize](https://brepjs.dev/getting-started/install)** — three init styles, bundler notes
74
+ - **[Your First Solid](https://brepjs.dev/getting-started/first-solid)** — the canonical drill-fillet-export workflow
75
+ - **[Cheat Sheet](https://brepjs.dev/getting-started/cheat-sheet)** — single-page reference
76
+ - **[Core Concepts](https://brepjs.dev/concepts/brep-vs-mesh)** — B-Rep, topology, types, kernels, tolerance
77
+ - **[Common Tasks](https://brepjs.dev/tasks/booleans)** — booleans, fillets, sketching, lofts, sweeps, finders, measurement, IO
78
+ - **[Three.js Integration](https://brepjs.dev/integration/threejs)** — meshing and rendering
79
+ - **[Migration](https://brepjs.dev/migration/replicad)** — coming from Replicad, OpenSCAD, or Three.js
80
+ - **[Extending brepjs](https://brepjs.dev/extending/architecture)** — custom kernels, custom operations, architecture
81
+ - **[Reference](https://brepjs.dev/reference/glossary)** — glossary, function lookup, error codes, ADRs
82
82
  - **[API Reference (TypeDoc)](https://andymai.github.io/brepjs/)** — searchable type-level reference
83
83
 
84
84
  Legacy single-page docs in [./docs/](./docs/) remain available; the chapter site is the canonical location going forward.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brepjs",
3
- "version": "18.3.2",
3
+ "version": "18.4.1",
4
4
  "description": "Web CAD library with pluggable geometry kernel",
5
5
  "keywords": [
6
6
  "cad",
@@ -212,6 +212,7 @@
212
212
  "docs:preview": "npm -C docs-site run preview",
213
213
  "docs:extract-tests": "npx tsx scripts/extract-doc-tests.ts",
214
214
  "docs:render-images": "npx tsx scripts/render-doc-images.ts",
215
+ "gen:og": "bash scripts/gen-og.sh",
215
216
  "test:docs": "npm run docs:extract-tests && vitest run --project occt tests/docs",
216
217
  "conformance:generate": "npx tsx scripts/generateConformance.ts",
217
218
  "sync:brepkit-types": "npx tsx scripts/sync-brepkit-types.ts",