We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 412267e commit 0933914Copy full SHA for 0933914
packages/core/src/node/logger/hint.ts
@@ -47,11 +47,9 @@ export async function hintThemeBreakingChange(customThemeDir: string) {
47
48
export function hintBuilderPluginsBreakingChange(config: UserConfig) {
49
if (
50
- // @ts-ignore config.builderPlugins is removed in V2
51
- config.builderPlugins &&
52
- // @ts-ignore
+ // config.builderPlugins is removed in V2
+ 'builderPlugins' in config &&
53
Array.isArray(config.builderPlugins) &&
54
55
config.builderPlugins.length > 0
56
) {
57
logger.error(
0 commit comments