[ci] format

This commit is contained in:
tony-sull 2022-06-16 19:08:44 +00:00 committed by github-actions[bot]
parent 1031c06f9c
commit 1c944a148a
2 changed files with 5 additions and 5 deletions

View file

@ -1,12 +1,12 @@
import { fileURLToPath } from 'url';
import type { AstroConfig, AstroIntegration } from 'astro';
import { LinkItem as LinkItemBase, simpleSitemapAndIndex, SitemapItemLoose } from 'sitemap';
import { fileURLToPath } from 'url';
import { ZodError } from 'zod';
import { LinkItem as LinkItemBase, SitemapItemLoose, simpleSitemapAndIndex } from 'sitemap';
import { Logger } from './utils/logger';
import { changefreqValues } from './constants';
import { validateOptions } from './validate-options';
import { generateSitemap } from './generate-sitemap';
import { Logger } from './utils/logger';
import { validateOptions } from './validate-options';
export type ChangeFreq = typeof changefreqValues[number];
export type SitemapItem = Pick<

View file

@ -1,6 +1,6 @@
import { z } from 'zod';
import { changefreqValues } from './constants';
import { SITEMAP_CONFIG_DEFAULTS } from './config-defaults';
import { changefreqValues } from './constants';
const localeKeySchema = () => z.string().min(1);