Skip to content

v0.18.1

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Mar 13:21
· 42 commits to main since this release
834bb89
  • Correct updating of side effect imports. v0.18.0 introduced an issue which basically replaced side effect imports with the URL without preserving the import statement.

    // before
    import 'https://esm.sh/slash@5.0.0'
    // after
    https://esm.sh/slash@5.1.0

    v0.18.1 now fixes this behavior and preserves the import statement.

    // before
    import 'https://esm.sh/slash@5.0.0'
    // after
    import 'https://esm.sh/slash@5.1.0'