Skip to content

Releases: altano/npm-packages

@altano/use-visible-elements@2.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • license change
    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

Patch Changes

  • Updated dependencies [b8bc683]
    • @altano/use-element-observer@2.0.0

@altano/use-toc-visible-sections@2.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • license change
    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

Patch Changes

  • Updated dependencies [b8bc683]
    • @altano/use-visible-elements@2.0.0

@altano/use-element-observer@2.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • license change
    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

@altano/tiny-async-pool@3.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

@altano/textfit@0.0.4

01 Apr 09:00
Compare
Choose a tag to compare

Patch Changes

  • b8bc683: build/test overhaul

    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

@altano/satori-fit-text@0.1.3

01 Apr 09:00
Compare
Choose a tag to compare

Patch Changes

  • b8bc683: build/test overhaul

    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

@altano/remark-mdx-toc-with-slugs@2.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • license change
    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

@altano/html-cdnify@3.0.0

01 Apr 09:00
Compare
Choose a tag to compare

Major Changes

  • b8bc683: build/test overhaul

    • consolidate on module exports
    • better build orchestration
    • more extensive testing (both unit and browser testing)

package-time-traveler@2.0.2

19 Mar 07:32
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [c1d2397]
    • @altano/tiny-async-pool@2.0.0

@altano/tiny-async-pool@2.0.0

19 Mar 07:33
Compare
Choose a tag to compare

Major Changes

  • c1d2397: Stricter API: doWork's iteratorFn must return Promise

    If you have an iteratorFn that resolves to a non-void value and you still want to use it, you have to be explicit by wrapping it:

    const resolvesToValue = async function () { /* ... */ };
    await doWork(..., async () => { await resolvesToValue(); });