mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
build: update get-components.js (#4859)
This commit is contained in:
parent
8b493aa925
commit
cc3d53b2fe
@ -1,16 +1,10 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const excludes = [
|
||||
'index.ts',
|
||||
'index.less',
|
||||
'style',
|
||||
'mixins',
|
||||
'utils',
|
||||
'.DS_Store'
|
||||
];
|
||||
const EXCLUDES = ['index.ts', 'index.less', 'style', 'mixins', 'utils', '.DS_Store'];
|
||||
|
||||
module.exports = function () {
|
||||
const dirs = fs.readdirSync(path.resolve(__dirname, '../src'));
|
||||
return dirs.filter(dirName => excludes.indexOf(dirName) === -1);
|
||||
module.exports = function() {
|
||||
const src = path.resolve(__dirname, '../src');
|
||||
const dirs = fs.readdirSync(src);
|
||||
return dirs.filter(dir => !EXCLUDES.includes(dir));
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user