This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
Releases: lume/variable
Releases · lume/variable
v0.8.0..v0.10.0
v0.8.0:
breaking: remove solid-js re-exports
BREAKING:
- removed dist/web.js, import from solid-js/web instead
- removed dist/html.js, import from solid-js/html instead
- all solid-js re-exports removed, import them from solid-js instead
v0.9.0:
BREAKING: limit the solid-js
package version to <1.5.0
to fix the build (tested in Windows PowerShell). We will update to latest Solid soon. For now, you might have luck forcing a newer Solid.js version, or just stay on the older version.
v0.10.0:
BREAKING: remove the global build. Migration: if you were importing the dist/global.js file with a script tag, instead use import
syntax to import @lume/variable
into your project.
v0.7.1
v0.7.0
- update to solid-js v1.0. Thanks for help @mosheduminer
breaking:re-export solid-js/html directly as a default instead of named export. EDIT: restored the name export in 0.7.1.
Breaking changes:
- rename
src/dom.ts
tosrc/web.ts
which renamesdist/dom.js
todist/web.js
in the consumable build output - no longer detects duplicate solid libs (some code that had duplicates may now break due to using multiple instances). This cleans the code up, and allows tree shaking.