Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 23 Nov 20:07
· 15 commits to main since this release
cc6e567

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