Releases: delucis/astro-auto-import
Releases · delucis/astro-auto-import
[email protected]
Patch Changes
- f7c02dc: Adds support for Astro v5
[email protected]
Patch Changes
- d7fdae6: Add
utility
keyword for better categorization in the Astro integrations library
[email protected]
Patch Changes
- 13b07e1: Support Astro v4
[email protected]
Patch Changes
- 5b9b278: Improve README
[email protected]
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
[email protected]
Patch Changes
- 8baeeae: Fix Windows compatibility
[email protected]
Patch Changes
- 75f332a: Add support for Astro 3.0.0 incl. prereleases
[email protected]
[email protected]
Patch Changes
- 9c5c1d2: Allow installation in Astro v2 projects
[email protected]
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