Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Releases: lume/variable

v0.8.0..v0.10.0

24 Oct 08:04
Compare
Choose a tag to compare

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

17 Jan 19:14
Compare
Choose a tag to compare
  • restore the named html export in src/html.js

v0.7.0

17 Jan 10:10
Compare
Choose a tag to compare
  • 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 to src/web.ts which renames dist/dom.js to dist/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.