@ifc-lite/wasm 1.14.2 → 1.14.3
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 +5 -3
- package/package.json +1 -1
- package/pkg/ifc-lite.d.ts +981 -1049
- package/pkg/ifc-lite.js +1452 -1445
- package/pkg/ifc-lite_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ println!("Parsed {} entities", result.entities.len());
|
|
|
114
114
|
For contributing or running the full demo app:
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
|
-
git clone https://github.com/louistrue/ifc-lite.git
|
|
117
|
+
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/louistrue/ifc-lite.git
|
|
118
118
|
cd ifc-lite
|
|
119
119
|
pnpm install && pnpm dev
|
|
120
120
|
```
|
|
@@ -122,6 +122,8 @@ pnpm install && pnpm dev
|
|
|
122
122
|
Open http://localhost:5173 and load an IFC file.
|
|
123
123
|
|
|
124
124
|
> **Note:** Requires Node.js 18+ and pnpm 8+. No Rust toolchain needed - WASM is pre-built.
|
|
125
|
+
>
|
|
126
|
+
> **Git LFS:** Large benchmark fixtures are intentionally not downloaded during clone. Pull only the files you need, for example `git lfs pull --include="tests/models/ara3d/AC20-FZK-Haus.ifc"`.
|
|
125
127
|
>
|
|
126
128
|
> **📖 Full Guide**: See [Installation](docs/guide/installation.md) for detailed setup options including troubleshooting.
|
|
127
129
|
|
|
@@ -262,7 +264,7 @@ ifc-lite/
|
|
|
262
264
|
For contributing to IFClite itself:
|
|
263
265
|
|
|
264
266
|
```bash
|
|
265
|
-
git clone https://github.com/louistrue/ifc-lite.git
|
|
267
|
+
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/louistrue/ifc-lite.git
|
|
266
268
|
cd ifc-lite
|
|
267
269
|
pnpm install
|
|
268
270
|
|
|
@@ -322,7 +324,7 @@ We welcome contributions!
|
|
|
322
324
|
|
|
323
325
|
```bash
|
|
324
326
|
# Fork and clone
|
|
325
|
-
git clone https://github.com/YOUR_USERNAME/ifc-lite.git
|
|
327
|
+
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/YOUR_USERNAME/ifc-lite.git
|
|
326
328
|
|
|
327
329
|
# Create a branch
|
|
328
330
|
git checkout -b feature/my-feature
|