-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emitSiteMessages infra for site errors/warnings
- Loading branch information
Showing
2 changed files
with
81 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import path from 'path'; | ||
import _ from 'lodash'; | ||
import {getCustomBabelConfigFilePath} from '@docusaurus/babel'; | ||
import logger from '@docusaurus/logger'; | ||
import type {Site} from './site'; | ||
|
||
type Params = {site: Site}; | ||
|
||
type SiteMessage = {type: 'warning' | 'error'; message: string}; | ||
|
||
type SiteMessageCreator = (params: Params) => Promise<SiteMessage[]>; | ||
|
||
const uselessBabelConfigMessages: SiteMessageCreator = async ({site}) => { | ||
const { | ||
props: {siteDir, siteConfig}, | ||
} = site; | ||
if (siteConfig.future.experimental_faster.swcJsLoader) { | ||
const babelConfigFilePath = await getCustomBabelConfigFilePath(siteDir); | ||
if (babelConfigFilePath) { | ||
return [ | ||
{ | ||
type: 'warning', | ||
message: `Your site is using the SWC js loader. You can safely remove the Babel config file at ${logger.code( | ||
path.relative(process.cwd(), babelConfigFilePath), | ||
)}.`, | ||
}, | ||
]; | ||
} | ||
} | ||
return []; | ||
}; | ||
|
||
async function collectAllSiteMessages(params: Params): Promise<SiteMessage[]> { | ||
const messageCreators: SiteMessageCreator[] = [uselessBabelConfigMessages]; | ||
return ( | ||
await Promise.all( | ||
messageCreators.map((createMessages) => createMessages(params)), | ||
) | ||
).flat(); | ||
} | ||
|
||
function printSiteMessages(siteMessages: SiteMessage[]): void { | ||
const [errors, warnings] = _.partition( | ||
siteMessages, | ||
(sm) => sm.type === 'error', | ||
); | ||
if (errors.length > 0) { | ||
logger.error(`Docusaurus site errors: | ||
- ${errors.map((sm) => sm.message).join('\n- ')}`); | ||
} | ||
if (warnings.length > 0) { | ||
logger.warn(`Docusaurus site warnings: | ||
- ${warnings.map((sm) => sm.message).join('\n- ')}`); | ||
} | ||
} | ||
|
||
export async function emitSiteMessages(params: Params): Promise<void> { | ||
const siteMessages = await collectAllSiteMessages(params); | ||
printSiteMessages(siteMessages); | ||
} |