mirror of
https://github.com/withastro/astro.git
synced 2025-01-24 11:22:13 -05:00
[ci] format
This commit is contained in:
parent
20c7765be5
commit
df78c79ea0
5 changed files with 9 additions and 11 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
import type { OutgoingHttpHeaders } from 'node:http';
|
||||||
|
import type { AddressInfo } from 'node:net';
|
||||||
import type {
|
import type {
|
||||||
MarkdownHeading,
|
MarkdownHeading,
|
||||||
MarkdownVFile,
|
MarkdownVFile,
|
||||||
|
@ -7,8 +9,6 @@ import type {
|
||||||
ShikiConfig,
|
ShikiConfig,
|
||||||
} from '@astrojs/markdown-remark';
|
} from '@astrojs/markdown-remark';
|
||||||
import type * as babel from '@babel/core';
|
import type * as babel from '@babel/core';
|
||||||
import type { OutgoingHttpHeaders } from 'node:http';
|
|
||||||
import type { AddressInfo } from 'node:net';
|
|
||||||
import type * as rollup from 'rollup';
|
import type * as rollup from 'rollup';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import type {
|
import type {
|
||||||
|
@ -2261,7 +2261,7 @@ export interface AstroUserConfig {
|
||||||
* updatedDate: z.coerce.date().optional(),
|
* updatedDate: z.coerce.date().optional(),
|
||||||
* })
|
* })
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* const dogs = defineCollection({
|
* const dogs = defineCollection({
|
||||||
* // The path is relative to the project root, or an absolute path.
|
* // The path is relative to the project root, or an absolute path.
|
||||||
* loader: file("src/data/dogs.json"),
|
* loader: file("src/data/dogs.json"),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
import { promises as fs, type PathLike, existsSync } from 'fs';
|
||||||
import type { MarkdownHeading } from '@astrojs/markdown-remark';
|
import type { MarkdownHeading } from '@astrojs/markdown-remark';
|
||||||
import * as devalue from 'devalue';
|
import * as devalue from 'devalue';
|
||||||
import { existsSync, promises as fs, type PathLike } from 'fs';
|
|
||||||
import { imageSrcToImportId, importIdToSymbolName } from '../assets/utils/resolveImports.js';
|
import { imageSrcToImportId, importIdToSymbolName } from '../assets/utils/resolveImports.js';
|
||||||
import { AstroError, AstroErrorData } from '../core/errors/index.js';
|
import { AstroError, AstroErrorData } from '../core/errors/index.js';
|
||||||
import { CONTENT_MODULE_FLAG, DEFERRED_MODULE } from './consts.js';
|
import { CONTENT_MODULE_FLAG, DEFERRED_MODULE } from './consts.js';
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import glob from 'fast-glob';
|
|
||||||
import { bold, cyan } from 'kleur/colors';
|
|
||||||
import type fsMod from 'node:fs';
|
import type fsMod from 'node:fs';
|
||||||
import * as path from 'node:path';
|
import * as path from 'node:path';
|
||||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||||
|
import glob from 'fast-glob';
|
||||||
|
import { bold, cyan } from 'kleur/colors';
|
||||||
import { type ViteDevServer, normalizePath } from 'vite';
|
import { type ViteDevServer, normalizePath } from 'vite';
|
||||||
import { z, type ZodSchema } from 'zod';
|
import { type ZodSchema, z } from 'zod';
|
||||||
import { zodToJsonSchema } from 'zod-to-json-schema';
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
||||||
import { printNode, zodToTs } from 'zod-to-ts';
|
import { printNode, zodToTs } from 'zod-to-ts';
|
||||||
import type { AstroSettings, ContentEntryType } from '../@types/astro.js';
|
import type { AstroSettings, ContentEntryType } from '../@types/astro.js';
|
||||||
|
@ -473,7 +473,7 @@ async function writeContentFiles({
|
||||||
collection.type === 'unknown'
|
collection.type === 'unknown'
|
||||||
? // Add empty / unknown collections to the data type map by default
|
? // Add empty / unknown collections to the data type map by default
|
||||||
// This ensures `getCollection('empty-collection')` doesn't raise a type error
|
// This ensures `getCollection('empty-collection')` doesn't raise a type error
|
||||||
(collectionConfig?.type ?? 'data')
|
collectionConfig?.type ?? 'data'
|
||||||
: collection.type;
|
: collection.type;
|
||||||
|
|
||||||
const collectionEntryKeys = Object.keys(collection.entries).sort();
|
const collectionEntryKeys = Object.keys(collection.entries).sort();
|
||||||
|
|
|
@ -4,9 +4,9 @@ import { fileURLToPath } from 'node:url';
|
||||||
import { bold } from 'kleur/colors';
|
import { bold } from 'kleur/colors';
|
||||||
import { normalizePath } from 'vite';
|
import { normalizePath } from 'vite';
|
||||||
import type { AstroSettings } from '../../@types/astro.js';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
|
import { AstroError, AstroErrorData } from '../errors/index.js';
|
||||||
import type { Logger } from '../logger/core.js';
|
import type { Logger } from '../logger/core.js';
|
||||||
import { REFERENCE_FILE } from './constants.js';
|
import { REFERENCE_FILE } from './constants.js';
|
||||||
import { AstroError, AstroErrorData } from '../errors/index.js';
|
|
||||||
|
|
||||||
export async function writeFiles(settings: AstroSettings, fs: typeof fsMod, logger: Logger) {
|
export async function writeFiles(settings: AstroSettings, fs: typeof fsMod, logger: Logger) {
|
||||||
try {
|
try {
|
||||||
|
|
2
packages/astro/templates/content/types.d.ts
vendored
2
packages/astro/templates/content/types.d.ts
vendored
|
@ -1,5 +1,4 @@
|
||||||
declare module 'astro:content' {
|
declare module 'astro:content' {
|
||||||
|
|
||||||
interface RenderResult {
|
interface RenderResult {
|
||||||
Content: import('astro/runtime/server/index.js').AstroComponentFactory;
|
Content: import('astro/runtime/server/index.js').AstroComponentFactory;
|
||||||
headings: import('astro').MarkdownHeading[];
|
headings: import('astro').MarkdownHeading[];
|
||||||
|
@ -9,7 +8,6 @@ declare module 'astro:content' {
|
||||||
'.md': Promise<RenderResult>;
|
'.md': Promise<RenderResult>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export interface RenderedContent {
|
export interface RenderedContent {
|
||||||
html: string;
|
html: string;
|
||||||
metadata?: {
|
metadata?: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue