geekris1 / auto-export

✨ A cli can automatically export files of the same type

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

auto-export

A cli can automatically export files of the same type

NPM version

Why

When you want to export many files of the same type in one folder, you may cost a lot of time to copy and paste the same code. eg if you want to export all images in one folder, you need to copy and paste the same code for each image, and export these images in a index.ts file.

Usage

Install

pnpm add -D auto-export

Config export.config.ts

  • targetDir (require) : the directory to export files

  • outputDir (optional) : the directory to generate the index.ts file to export files

  • customImport (optional) : custom the import statement to use in the index.ts file

import { defineExportConfig } from '@sudongyuer/auto-export'
export default defineExportConfig({
  configs: [
    {
      targetDir: './src/assets/images',
    },
    {
      targetDir: './src/assets/css',
      outputDir: './src/assets/css',
    },
    {
      targetDir: './src/assets/svgs',
      customImport: (fileName, file) => {
        return `import { ReactComponent as ${fileName} } from '${file}'`
      },
    },
  ],
})

Generate index.ts

pnpm run autoexport

Author

sudongyuer email:976499226@qq.com

License

MIT License © 2021 SuDongYu

About

✨ A cli can automatically export files of the same type

License:MIT License


Languages

Language:TypeScript 99.2%Language:JavaScript 0.8%