Skip to content

Recursively get all named export from a file and out-of-the-box support unplugin-auto-import

License

Notifications You must be signed in to change notification settings

s3xysteak/unplugin-export-collector

Repository files navigation

🎉 unplugin-export-collector

English | 简体中文

ESM export collector with out-of-the-box support unplugin-auto-import.

🔨 Install

$ pnpm i -D unplugin-export-collector

🚀 Feature

Recursively collect all named exports from an ESM file.

Consumed in src/index.ts is:

// src/index.ts
export const one = 1
export * from './func1' // export from another file.
// export * from '~/func2' // Also support aliases.
export * from 'vue' // reExport from deps will be ignored.

in src/func1.ts is:

// src/func1.ts
function func1() {}
export { func1 as funcRe }

Just get named export list:

import { expCollector } from 'unplugin-export-collector/core'

console.log(await expCollector('./src/index.ts'))
// ['one', 'funcRe']

Or support unplugin-auto-import. You can read the total document below, here we take Vite as an example:

import ExportCollector from 'unplugin-export-collector/vite'

export default defineConfig({
  plugins: [
    ExportCollector({ /* options */ }),
  ],
})

It will generate a file at ./src/imports.js in default while bundling, you can export it and use it in project like that:

import { defineConfig } from 'vite'
import Imports from 'my-project/imports' // You need to handle the export files manually when bundling

export default defineConfig({
  plugins: [
    AutoImport({
      imports: [
        Imports()
      ]
    }),
  ]
})

Also support resolvers, just need to configure the option type: 'resolvers':

ExportCollector({
  type: 'resolvers'
})

Use in project:

import { defineConfig } from 'vite'
import Resolvers from 'my-project/resolvers'

export default defineConfig({
  plugins: [
    AutoImport({
      resolvers: [
        Resolvers()
      ]
    }),
  ]
})

🔧 Usage

More details see the unit test in test folder, and the examples in test/unplugin-lab.

Generate autoImport function

Vite
// vite.config.ts
import ExportCollector from 'unplugin-export-collector/vite'

export default defineConfig({
  plugins: [
    ExportCollector({ /* options */ }),
  ],
})


Rollup
// rollup.config.js
import ExportCollector from 'unplugin-export-collector/rollup'

export default {
  plugins: [
    ExportCollector({ /* options */ }),
    // other plugins
  ],
}


Webpack
// webpack.config.js
module.exports = {
  /* ... */
  plugins: [
    require('unplugin-export-collector/webpack').default({ /* options */ }),
  ],
}


esbuild
// esbuild.config.js
import { build } from 'esbuild'
import ExportCollector from 'unplugin-export-collector/esbuild'

build({
  /* ... */
  plugins: [
    ExportCollector({
      /* options */
    }),
  ],
})


Options:

Please move to the type declaration, all options are well commented.

Just get export list

Use like :

import { expCollector } from 'unplugin-export-collector/core'

const val = await expCollector('./src/index.ts') // base on root as default.

console.log(val)
// ['one', 'funcRe']

Or customize the base path.

// ...
const val = await expCollector(
  './index.ts',
  {
    base: fileURLToPath(new URL('./src/index.ts', import.meta.url))
    // alias: { '~': fileURLToPath(new URL('.', import.meta.url)) } // Also support aliases.
  }
)
// the value will be same as above example.

The core exports a series of methods, briefly described as follows:

  • expGenerator: Reads a file, generates the autoImport method, and writes it.
  • expGeneratorData: Reads a file but does not write, returns the string of the autoImport method.
  • expCollector: Reads a file, returns an array of named exports.
  • parser: Reads a string, returns an array of named exports at one level and an array of re-export paths.

About

Recursively get all named export from a file and out-of-the-box support unplugin-auto-import

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published