mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
sdf
This commit is contained in:
parent
fd318c62e3
commit
37a303c11e
@ -3,6 +3,16 @@ import { join } from 'path';
|
||||
import { winPath } from '@fesjs/utils';
|
||||
import { runtimePath } from '../../../../utils/constants';
|
||||
|
||||
function getAppPath(absSrcPath) {
|
||||
for (const suffix of ['.js', '.ts', '.jsm']) {
|
||||
const p = winPath(join(absSrcPath, `app${suffix}`));
|
||||
if (existsSync(p)) {
|
||||
return p;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
export default function (api) {
|
||||
const {
|
||||
paths,
|
||||
@ -33,12 +43,11 @@ export default function (api) {
|
||||
'onRouterCreated'
|
||||
]
|
||||
});
|
||||
const appPath = winPath(join(paths.absSrcPath, 'app.js'));
|
||||
const plugins = await api.applyPlugins({
|
||||
key: 'addRuntimePlugin',
|
||||
type: api.ApplyPluginsType.add,
|
||||
initialValue: [
|
||||
existsSync(appPath) && appPath
|
||||
getAppPath(paths.absSrcPath)
|
||||
].filter(Boolean)
|
||||
});
|
||||
api.writeTmpFile({
|
||||
|
@ -44,9 +44,8 @@ export default async ({ api, watch }) => {
|
||||
type: api.ApplyPluginsType.add,
|
||||
initialValue: [
|
||||
paths.absPagesPath,
|
||||
// 貌似没用到
|
||||
// join(paths.absSrcPath, api.config?.singular ? 'layout' : 'layouts'),
|
||||
join(paths.absSrcPath, 'app.js')
|
||||
join(paths.absSrcPath, 'app.js'),
|
||||
join(paths.absSrcPath, 'app.ts')
|
||||
]
|
||||
});
|
||||
lodash
|
||||
|
Loading…
x
Reference in New Issue
Block a user