chore: harden release checks and package coverage
This commit is contained in:
@@ -508,9 +508,7 @@ function validateConfiguredImports(_source: string, ast: PageAst, file: string):
|
||||
]);
|
||||
const missing = [...usedComponents].filter(
|
||||
(name) =>
|
||||
!compilerBuiltins.has(name) &&
|
||||
!options.globalComponents.has(name) &&
|
||||
!imported.has(name),
|
||||
!compilerBuiltins.has(name) && !options.globalComponents.has(name) && !imported.has(name),
|
||||
);
|
||||
if (ast.layoutIsSymbol && ast.layout && !imported.has(ast.layout)) missing.push(ast.layout);
|
||||
if (!missing.length) return;
|
||||
|
||||
Reference in New Issue
Block a user