fix: 修复一些小问题

This commit is contained in:
harrywan 2021-06-23 10:16:35 +08:00
parent baa93b91b9
commit ce68e83aa6
6 changed files with 14 additions and 6 deletions

View File

@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "none"
}

View File

@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "none"
}

View File

@ -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);
}
}

View File

@ -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,

View File

@ -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);
}

View File

@ -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 }) {