You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed: a clean npm install @webtides/element-library no longer fails. 0.1.0 ran "postinstall": "patch-package" without shipping patch-package, so consumers without it on PATH got sh: patch-package: command not found (exit 127) and the install aborted. The postinstall hook, the patch-package devDependency, and the patches/ directory have all been removed.
Components
Fixed (el-carousel): the carousel now bundles in consumer projects. It deep-imports Glide's src/components/html.js, whose pristine source imports a non-existent exist export — which esbuild/Vite reject as a hard build error. 0.1.0 "fixed" this with a patch-package patch applied via postinstall, but a dependency's postinstall runs from its own nested directory and can never reach the consumer's hoisted @glidejs/glide, so the patch never applied downstream. The fixed Glide html.js component is now vendored into the carousel (glide/components/glide-html.js) instead, removing the dependency on patching consumers' node_modules.