文件内容抽取打包工具

___使用步骤:

install repack
deno install --allow-read --allow-write --allow-run --allow-env -n repack https://raw.githubusercontent.com/noteScript/reepack/deno/cli.ts
@workDir/repack.config.js
export default {
  output: { // 输出
    ext: '.yml', // 文件后缀
    dir: 'bindRelationShip_output', // 输出文件夹
  },
  input: { // 输入
    ext: '.vue', // 文件后缀
    dir: 'src', //输入文件夹
  },
  // isFlat: true, // 是否递归
  // sep = '.', // 片段分隔符
  extract: /<i18n>([\S\s]*)<\/i18n>/, // 需要提取的正则表达式
  // hasManifest, // 是否生成清单
  // rewrite, // 重写[exec Regex] 需要返回你处理的结果,这将覆盖程序处理结果
};
command
repack i  # 执行输入
repack o  # 执行输出