[ci] format

This commit is contained in:
matthewp 2023-09-25 14:17:53 +00:00 committed by astrobot-houston
parent 69fbf95b22
commit 7fc700e30d

View file

@ -51,20 +51,20 @@ export default function configHeadVitePlugin(): vite.Plugin {
server = _server; server = _server;
}, },
resolveId(source, importer) { resolveId(source, importer) {
if(importer) { if (importer) {
// Do propagation any time a new module is imported. This is because // Do propagation any time a new module is imported. This is because
// A module with propagation might be loaded before one of its parent pages // A module with propagation might be loaded before one of its parent pages
// is loaded, in which case that parent page won't have the in-tree and containsHead // is loaded, in which case that parent page won't have the in-tree and containsHead
// values. Walking up the tree in resolveId ensures that they do // values. Walking up the tree in resolveId ensures that they do
return this.resolve(source, importer, { skipSelf: true }).then(result => { return this.resolve(source, importer, { skipSelf: true }).then((result) => {
if(result) { if (result) {
let info = this.getModuleInfo(result.id); let info = this.getModuleInfo(result.id);
const astro = info && getAstroMetadata(info); const astro = info && getAstroMetadata(info);
if(astro) { if (astro) {
if(astro.propagation === 'self' || astro.propagation === 'in-tree') { if (astro.propagation === 'self' || astro.propagation === 'in-tree') {
propagateMetadata.call(this, importer, 'propagation', 'in-tree'); propagateMetadata.call(this, importer, 'propagation', 'in-tree');
} }
if(astro.containsHead) { if (astro.containsHead) {
propagateMetadata.call(this, importer, 'containsHead', true); propagateMetadata.call(this, importer, 'containsHead', true);
} }
} }