@bldrs-ai/conway 0.8.782 → 0.10.797
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 +11 -4
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNode.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNodeMT.js +25 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWeb.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.js +19 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/interface/conway_geometry.js +58 -5
- package/compiled/src/AP214E3_2010/ap214_geometry_extraction.test.js +1 -1
- package/compiled/src/version/version.d.ts.map +1 -1
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -16,10 +16,17 @@ Conway includes two major subcomponents:
|
|
|
16
16
|
1. Install the `gmake` and `node` dependencies via Homebrew (```brew install gmake node```).
|
|
17
17
|
|
|
18
18
|
### EMSDK Setup
|
|
19
|
-
1. [
|
|
20
|
-
2.
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
1. Clone the [EMSDK](https://github.com/emscripten-core/emsdk) repo and add it to your path (see their instructions)
|
|
20
|
+
2. Conway is using `3.1.72`
|
|
21
|
+
```
|
|
22
|
+
> cd $EMSDK
|
|
23
|
+
> ./emsdk install 3.1.72
|
|
24
|
+
> ./emsdk activate 3.1.72
|
|
25
|
+
> cd $CONWAY
|
|
26
|
+
conway> emcc -v
|
|
27
|
+
emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 3.1.72 (437140d149d9c977ffc8b09dbaf9b0f5a02db190)
|
|
28
|
+
...
|
|
29
|
+
```
|
|
23
30
|
|
|
24
31
|
### Initial Build
|
|
25
32
|
|