mirror of
https://github.com/brunopostle/ifcurl.git
synced 2026-07-12 10:18:14 +00:00
Replace importmap pointing at esm.sh/unpkg with locally-bundled files built from pinned npm packages (package.json + lockfile). Run `cd forgejo && npm install && npm run build` to regenerate after a version bump. Tracked in ifcurl-dkz: fast-xml-parser CVEs in @thatopen/components 3.3.1 should be addressed in a follow-up upgrade. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
331 B
JavaScript
6 lines
331 B
JavaScript
// Entry point bundled by build.js into viewer-deps.js.
|
|
// Re-exports the three viewer dependencies as named namespace exports so
|
|
// viewer.html can do: import { THREE, OBC, JSZip } from "/assets/viewer-deps.js"
|
|
export * as THREE from "three";
|
|
export * as OBC from "@thatopen/components";
|
|
export { default as JSZip } from "jszip";
|