23 lines
678 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { glob, winPath } from '@fesjs/utils';
import { join, basename } from 'path';
export function getLocales(cwd) {
const files = glob
.sync('*.js', {
cwd,
})
.filter((file) => !file.endsWith('.d.ts') && !file.endsWith('.test.js') && !file.endsWith('.test.jsx'))
.map((fileName) => {
const locale = basename(fileName, '.js');
const importName = locale.replace('-', '');
return {
importName,
locale,
// import语法的路径必须处理win
path: winPath(join(cwd, fileName)),
};
});
return files;
}