mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
14 lines
358 B
JavaScript
14 lines
358 B
JavaScript
import { join } from 'path';
|
|
import { existsSync } from 'fs';
|
|
import { winPath } from '@fesjs/utils';
|
|
|
|
export function getAppPath(absSrcPath) {
|
|
for (const suffix of ['.js', '.ts', '.jsm', '.jsx', '.tsx']) {
|
|
const p = winPath(join(absSrcPath, `app${suffix}`));
|
|
if (existsSync(p)) {
|
|
return p;
|
|
}
|
|
}
|
|
return null;
|
|
}
|