mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 修复一些小问题
This commit is contained in:
parent
baa93b91b9
commit
ce68e83aa6
4
packages/create-fes-app/templates/app/h5/.prettierrc
Normal file
4
packages/create-fes-app/templates/app/h5/.prettierrc
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none"
|
||||
}
|
4
packages/create-fes-app/templates/app/pc/.prettierrc
Normal file
4
packages/create-fes-app/templates/app/pc/.prettierrc
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none"
|
||||
}
|
@ -6,7 +6,7 @@ const matchName = (config, name) => {
|
||||
for (let i = 0; i < config.length; i++) {
|
||||
const item = config[i];
|
||||
if (item.meta && item.meta.name === name) {
|
||||
res = item.meta || {};
|
||||
res = item.meta;
|
||||
res.path = item.path;
|
||||
break;
|
||||
}
|
||||
@ -68,10 +68,10 @@ export function getIconsFromMenu(data) {
|
||||
return [];
|
||||
}
|
||||
let icons = [];
|
||||
(data || []).forEach((item = { path: '/' }) => {
|
||||
data.forEach((item = { path: '/' }) => {
|
||||
if (item.icon) {
|
||||
const { icon } = item;
|
||||
if (icon && icon.type === 'icon') {
|
||||
if (icon.type === 'icon') {
|
||||
icons.push(icon.name);
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ function modifyRoutesWithAttachMode({
|
||||
export default function modifyRoutes({ api, namespace }) {
|
||||
api.modifyRoutes((routes) => {
|
||||
const { router, base } = api.config;
|
||||
const masterHistoryType = (router && router?.mode) || defaultHistoryType;
|
||||
const masterHistoryType = (router && router.mode) || defaultHistoryType;
|
||||
|
||||
modifyRoutesWithAttachMode({
|
||||
routes,
|
||||
|
@ -39,7 +39,7 @@ export default function (api) {
|
||||
try {
|
||||
// clear output path before exec build
|
||||
if (process.env.CLEAR_OUTPUT !== 'none') {
|
||||
if (paths.absOutputPath && existsSync(paths.absOutputPath || '')) {
|
||||
if (paths.absOutputPath && existsSync(paths.absOutputPath)) {
|
||||
logger.debug(`Clear OutputPath: ${paths.absNodeModulesPath}`);
|
||||
rimraf.sync(paths.absOutputPath);
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ const rank = function (routes) {
|
||||
rank(item.children);
|
||||
}
|
||||
});
|
||||
routes = routes.sort((a, b) => b.count - a.count);
|
||||
routes.sort((a, b) => b.count - a.count);
|
||||
};
|
||||
|
||||
const getRoutes = function ({ config, absPagesPath }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user