@ifc-lite/server-bin 1.14.1 → 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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -108,11 +108,13 @@ cd my-app
108
108
  docker compose up -d
109
109
 
110
110
  # Or build from source
111
- git clone https://github.com/louistrue/ifc-lite
111
+ GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/louistrue/ifc-lite
112
112
  cd ifc-lite/apps/server
113
113
  cargo build --release
114
114
  ```
115
115
 
116
+ If you later need large IFC benchmark fixtures from the monorepo, fetch only the specific files you plan to use instead of downloading all LFS objects.
117
+
116
118
  ## API Reference
117
119
 
118
120
  ### `runBinary(args?: string[]): Promise<number>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ifc-lite/server-bin",
3
- "version": "1.14.1",
3
+ "version": "1.14.3",
4
4
  "description": "Pre-built IFC-Lite server binary - run without Docker or Rust",
5
5
  "type": "module",
6
6
  "bin": {
@@ -61,6 +61,6 @@
61
61
  "build": "tsc",
62
62
  "dev": "tsc --watch",
63
63
  "start": "node dist/cli.js",
64
- "postinstall": "node dist/postinstall.js || true"
64
+ "postinstall": "node -e \"import('./dist/postinstall.js').catch(() => {})\" || true"
65
65
  }
66
66
  }