fix: get-components should ignore .DS_Store in macOS

This commit is contained in:
陈嘉涵 2017-09-28 10:42:25 +08:00
parent 12e1abc782
commit 3de884fbd9

View File

@ -3,6 +3,6 @@ const path = require('path');
module.exports = function() {
const dirs = fs.readdirSync(path.resolve(__dirname, '../../packages'));
const excludes = ['index.js', 'vant-css', 'mixins', 'utils'];
const excludes = ['index.js', 'vant-css', 'mixins', 'utils', '.DS_Store'];
return dirs.filter(dirName => excludes.indexOf(dirName) === -1)
}