Releases: delucis/astro-auto-import
Releases · delucis/astro-auto-import
astro-auto-import@0.4.4
Patch Changes
- f7c02dc: Adds support for Astro v5
astro-auto-import@0.4.3
Patch Changes
- d7fdae6: Add
utility
keyword for better categorization in the Astro integrations library
astro-auto-import@0.4.2
Patch Changes
- 13b07e1: Support Astro v4
astro-auto-import@0.4.1
Patch Changes
- 5b9b278: Improve README
astro-auto-import@0.4.0
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
Patch Changes
- 8baeeae: Fix Windows compatibility
astro-auto-import@0.3.1
Patch Changes
- 75f332a: Add support for Astro 3.0.0 incl. prereleases
astro-auto-import@0.3.0
astro-auto-import@0.2.1
Patch Changes
- 9c5c1d2: Allow installation in Astro v2 projects
astro-auto-import@0.2.0
Minor Changes
-
aa42e19: Add support for @astrojs/mdx 🎉
Auto-imports will now also be injected in
.mdx
files. You may need to remove manual imports if you were already usingastro-auto-import
v0.1.x with MDX. -
795e08e: Update to Astro v1 — remember to enable
legacy.astroFlavoredMarkdown
if you’re using components in.md
files