mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
887 B
JavaScript
32 lines
887 B
JavaScript
const fs = require('fs-extra');
|
|
const glob = require('fast-glob');
|
|
const path = require('path');
|
|
const tips = '// This file is auto gererated by build/build-entry.js';
|
|
const root = path.join(__dirname, '../');
|
|
const join = dir => path.join(root, dir);
|
|
|
|
// generate webpack entry file for markdown docs
|
|
function buildDocsEntry() {
|
|
const output = join('docs/src/docs-entry.js');
|
|
const getName = fullPath => fullPath.replace(/(\/README)|(\.md)/g, '').split('/').pop();
|
|
const docs = glob
|
|
.sync([
|
|
join('docs/**/*.md'),
|
|
join('packages/**/*.md'),
|
|
'!**/node_modules/**'
|
|
])
|
|
.map(fullPath => {
|
|
const name = getName(fullPath);
|
|
return `'${name}': () => import('${path.relative(join('docs/src'), fullPath)}')`;
|
|
});
|
|
|
|
const content = `${tips}
|
|
export default {
|
|
${docs.join(',\n ')}
|
|
};
|
|
`;
|
|
fs.writeFileSync(output, content);
|
|
}
|
|
|
|
buildDocsEntry();
|