dir-tree-out

1.0.2 • Public • Published

在根目录添加treedir.config.js文件,导出配置文件

module.exports = {
  build: {
    // 打印所有文件。默认情况下,tree 不打印隐藏文件(以点开头的文件)
    allFiles: false,
    // 在文件之前列出目录
    dirsFirst: false,
    // 仅列出目录
    dirsOnly: false,
    // 用于测试每个文件名的正则表达式数组。匹配的文件将被排除,匹配的目录不会被遍历
    exclude: [
      /node_modules/,
      /.git/,
      /UEditor/,
      /font/,
      /icons/,
      /tree.md/,
      /tests/,
    ],
    // 目录树的最大显示深度
    maxDepth: Number.POSITIVE_INFINITY,
    // 以相反的字母顺序对输出进行排序
    reverse: false,
    // 在目录后面附加一个斜杠
    trailingSlash: false,
    readPath: './',
    exportPath: 'tree.md',
  },
}

在项目根目录终端输入命令生成文件

npx dir-tree-out

Readme

Keywords

Package Sidebar

Install

npm i dir-tree-out

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

2.62 kB

Total Files

4

Last publish

Collaborators

  • tdn.zzt