globby:用户友好的glob匹配 源码
glo 用户友好的全局匹配 基于但添加了许多有用的功能。 产品特点 Promise API 多种模式 取反的模式: ['foo*', '!foobar'] 展开目录: foo → foo/**/* 支持.gitignore 安装 $ npm install globby 用法 ├── unicorn ├── cake └── rainbow const globby = require ( 'globby' ) ; ( async ( ) => { const paths = await globby ( [ '*' , '!cake' ] ) ; console . log (
用户评论