Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-sull authored and github-actions[bot] committed Jun 16, 2022
1 parent 1031c06 commit 1c944a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/integrations/sitemap/src/index.ts
Original file line number Diff line number Diff line change
@@ -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<
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/sitemap/src/schema.ts
Original file line number Diff line number Diff line change
@@ -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);

Expand Down

0 comments on commit 1c944a1

Please sign in to comment.