Skip to content

Releases: delucis/astro-auto-import

astro-auto-import@0.4.5

05 Oct 18:00
53ce7ba

Choose a tag to compare

Patch Changes

  • 8538321 Thanks @delucis! - No code changes. This release is the first published using OIDC trusted publisher configuration for improved security.

astro-auto-import@0.4.4

10 Oct 20:15
60191b7

Choose a tag to compare

Patch Changes

  • f7c02dc: Adds support for Astro v5

astro-auto-import@0.4.3

08 Oct 09:50
c8a73a1

Choose a tag to compare

Patch Changes

  • d7fdae6: Add utility keyword for better categorization in the Astro integrations library

astro-auto-import@0.4.2

05 Dec 15:05
63fc061

Choose a tag to compare

Patch Changes

astro-auto-import@0.4.1

23 Nov 20:31
3ba79db

Choose a tag to compare

Patch Changes

astro-auto-import@0.4.0

23 Nov 20:07
cc6e567

Choose a tag to compare

Minor Changes

  • ec5f241: Added support for namespace imports, for importing all named exports from a module.

    AutoImport({
      imports: [
        {
          // Import all named exports from a module as a namespace
          // generates:
          // import * as Components from './src/components';
          './src/components': 'Components',
        },
      ],
    }),

Patch Changes

  • ea93946: refactor: strip out old “exposures” code

astro-auto-import@0.3.2

13 Nov 15:23
555c5e3

Choose a tag to compare

Patch Changes

  • 8baeeae: Fix Windows compatibility

astro-auto-import@0.3.1

05 Aug 08:32
83869a6

Choose a tag to compare

Patch Changes

  • 75f332a: Add support for Astro 3.0.0 incl. prereleases

astro-auto-import@0.3.0

27 Apr 09:39
b3de50a

Choose a tag to compare

Warning
This release includes breaking changes.
The minimum required Astro version is now 2.0 and auto-imports only work in MDX.

Minor Changes

  • ad941b0: Drop support for auto-importing in .astro files
  • ad941b0: Drop support for Astro v1

astro-auto-import@0.2.1

17 Jan 16:12
2e7ca72

Choose a tag to compare

Patch Changes

  • 9c5c1d2: Allow installation in Astro v2 projects