mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
17 lines
330 B
JavaScript
17 lines
330 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const excludes = [
|
|
'index.ts',
|
|
'index.less',
|
|
'style',
|
|
'mixins',
|
|
'utils',
|
|
'.DS_Store'
|
|
];
|
|
|
|
module.exports = function () {
|
|
const dirs = fs.readdirSync(path.resolve(__dirname, '../packages'));
|
|
return dirs.filter(dirName => excludes.indexOf(dirName) === -1);
|
|
};
|