@bldrs-ai/conway 1.349.1111 → 1.352.1113
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 +12 -0
- package/compiled/examples/browser-bundled.cjs +1 -1
- package/compiled/examples/cli-bundled.cjs +1 -1
- package/compiled/examples/cli-step-bundled.cjs +1 -1
- package/compiled/examples/validator-bundled.cjs +1 -1
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -65,6 +65,18 @@ Build just conway, not conway-geom, e.g. for updating just the Conway API or too
|
|
|
65
65
|
yarn build-incremental
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
#### Running tests without building conway-geom (no EMSDK)
|
|
69
|
+
|
|
70
|
+
The jest suite loads the conway-geom WASM binaries, which are normally produced
|
|
71
|
+
by the EMSDK/GENie native build. If you only touch the TypeScript, you can skip
|
|
72
|
+
that toolchain entirely: `yarn setup` builds the TypeScript (`build-incremental`)
|
|
73
|
+
and then runs `yarn wasm-prebuilt`, which fetches the WASM `Dist/` bundle from
|
|
74
|
+
the last-published `@bldrs-ai/conway` npm package — so a fresh `yarn setup && yarn
|
|
75
|
+
test` works with no EMSDK. Pin a build with `CONWAY_PREBUILT_WASM_VERSION`, or
|
|
76
|
+
refresh with `yarn wasm-prebuilt --force`.
|
|
77
|
+
This is a convenience for TS-only work — if you change the `conway-geom`
|
|
78
|
+
submodule you must do a real `yarn build` to get matching binaries.
|
|
79
|
+
|
|
68
80
|
For a full, clean rebuild:
|
|
69
81
|
```
|
|
70
82
|
yarn build-rebuild
|
|
@@ -69608,7 +69608,7 @@ var IfcStepParser = class extends StepParser {
|
|
|
69608
69608
|
IfcStepParser.Instance = new IfcStepParser();
|
|
69609
69609
|
|
|
69610
69610
|
// compiled/src/version/version.js
|
|
69611
|
-
var versionString = "Conway Web-Ifc Shim v1.
|
|
69611
|
+
var versionString = "Conway Web-Ifc Shim v1.352.1113";
|
|
69612
69612
|
|
|
69613
69613
|
// compiled/src/statistics/statistics.js
|
|
69614
69614
|
var Statistics = class {
|
|
@@ -85869,7 +85869,7 @@ var IfcSceneBuilder = class {
|
|
|
85869
85869
|
};
|
|
85870
85870
|
|
|
85871
85871
|
// compiled/src/version/version.js
|
|
85872
|
-
var versionString = "Conway Web-Ifc Shim v1.
|
|
85872
|
+
var versionString = "Conway Web-Ifc Shim v1.352.1113";
|
|
85873
85873
|
|
|
85874
85874
|
// compiled/src/statistics/statistics.js
|
|
85875
85875
|
var Statistics = class {
|
|
@@ -79320,7 +79320,7 @@ var ExtractResult;
|
|
|
79320
79320
|
})(ExtractResult || (ExtractResult = {}));
|
|
79321
79321
|
|
|
79322
79322
|
// compiled/src/version/version.js
|
|
79323
|
-
var versionString = "Conway Web-Ifc Shim v1.
|
|
79323
|
+
var versionString = "Conway Web-Ifc Shim v1.352.1113";
|
|
79324
79324
|
|
|
79325
79325
|
// compiled/src/statistics/statistics.js
|
|
79326
79326
|
var Statistics = class {
|
|
@@ -69606,7 +69606,7 @@ var IfcStepParser = class extends StepParser {
|
|
|
69606
69606
|
IfcStepParser.Instance = new IfcStepParser();
|
|
69607
69607
|
|
|
69608
69608
|
// compiled/src/version/version.js
|
|
69609
|
-
var versionString = "Conway Web-Ifc Shim v1.
|
|
69609
|
+
var versionString = "Conway Web-Ifc Shim v1.352.1113";
|
|
69610
69610
|
|
|
69611
69611
|
// compiled/src/statistics/statistics.js
|
|
69612
69612
|
var Statistics = class {
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
// only the first segment (major) is meaningful and is the one CI carries forward.
|
|
6
6
|
// Must stay in `vN.N.N` shape: the CI stamp regex, scripts/updateVersion.mjs, and
|
|
7
7
|
// statistics.ts all match `v\d+\.\d+\.\d+`.
|
|
8
|
-
const versionString = 'Conway Web-Ifc Shim v1.
|
|
8
|
+
const versionString = 'Conway Web-Ifc Shim v1.352.1113';
|
|
9
9
|
export { versionString };
|