mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +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++) {
|
for (let i = 0; i < config.length; i++) {
|
||||||
const item = config[i];
|
const item = config[i];
|
||||||
if (item.meta && item.meta.name === name) {
|
if (item.meta && item.meta.name === name) {
|
||||||
res = item.meta || {};
|
res = item.meta;
|
||||||
res.path = item.path;
|
res.path = item.path;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -68,10 +68,10 @@ export function getIconsFromMenu(data) {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
let icons = [];
|
let icons = [];
|
||||||
(data || []).forEach((item = { path: '/' }) => {
|
data.forEach((item = { path: '/' }) => {
|
||||||
if (item.icon) {
|
if (item.icon) {
|
||||||
const { icon } = item;
|
const { icon } = item;
|
||||||
if (icon && icon.type === 'icon') {
|
if (icon.type === 'icon') {
|
||||||
icons.push(icon.name);
|
icons.push(icon.name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ function modifyRoutesWithAttachMode({
|
|||||||
export default function modifyRoutes({ api, namespace }) {
|
export default function modifyRoutes({ api, namespace }) {
|
||||||
api.modifyRoutes((routes) => {
|
api.modifyRoutes((routes) => {
|
||||||
const { router, base } = api.config;
|
const { router, base } = api.config;
|
||||||
const masterHistoryType = (router && router?.mode) || defaultHistoryType;
|
const masterHistoryType = (router && router.mode) || defaultHistoryType;
|
||||||
|
|
||||||
modifyRoutesWithAttachMode({
|
modifyRoutesWithAttachMode({
|
||||||
routes,
|
routes,
|
||||||
|
@ -39,7 +39,7 @@ export default function (api) {
|
|||||||
try {
|
try {
|
||||||
// clear output path before exec build
|
// clear output path before exec build
|
||||||
if (process.env.CLEAR_OUTPUT !== 'none') {
|
if (process.env.CLEAR_OUTPUT !== 'none') {
|
||||||
if (paths.absOutputPath && existsSync(paths.absOutputPath || '')) {
|
if (paths.absOutputPath && existsSync(paths.absOutputPath)) {
|
||||||
logger.debug(`Clear OutputPath: ${paths.absNodeModulesPath}`);
|
logger.debug(`Clear OutputPath: ${paths.absNodeModulesPath}`);
|
||||||
rimraf.sync(paths.absOutputPath);
|
rimraf.sync(paths.absOutputPath);
|
||||||
}
|
}
|
||||||
|
@ -163,7 +163,7 @@ const rank = function (routes) {
|
|||||||
rank(item.children);
|
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 }) {
|
const getRoutes = function ({ config, absPagesPath }) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user