[ci] format
This commit is contained in:
parent
73ec6f6c16
commit
b6935e6ac5
4 changed files with 7 additions and 4 deletions
5
packages/astro/astro-jsx.d.ts
vendored
5
packages/astro/astro-jsx.d.ts
vendored
|
@ -18,7 +18,10 @@ declare namespace astroHTML.JSX {
|
|||
children: {};
|
||||
}
|
||||
|
||||
interface IntrinsicAttributes extends AstroBuiltinProps, AstroBuiltinAttributes, AstroClientDirectives {
|
||||
interface IntrinsicAttributes
|
||||
extends AstroBuiltinProps,
|
||||
AstroBuiltinAttributes,
|
||||
AstroClientDirectives {
|
||||
slot?: string;
|
||||
children?: Children;
|
||||
}
|
||||
|
|
|
@ -4,10 +4,10 @@ import { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './../constants.js';
|
|||
import { fileURLToPath, pathToFileURL } from 'url';
|
||||
import jsxRenderer from '../../jsx/renderer.js';
|
||||
import { markdownContentEntryType } from '../../vite-plugin-markdown/content-entry-type.js';
|
||||
import { getDefaultClientDirectives } from '../client-directive/index.js';
|
||||
import { createDefaultDevConfig } from './config.js';
|
||||
import { AstroTimer } from './timer.js';
|
||||
import { loadTSConfig } from './tsconfig.js';
|
||||
import { getDefaultClientDirectives } from '../client-directive/index.js';
|
||||
|
||||
export function createBaseSettings(config: AstroConfig): AstroSettings {
|
||||
return {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import type { MarkdownRenderingOptions } from '@astrojs/markdown-remark';
|
||||
import type { RuntimeMode, SSRLoadedRenderer } from '../../@types/astro';
|
||||
import { getDefaultClientDirectives } from '../client-directive/default.js';
|
||||
import type { LogOptions } from '../logger/core.js';
|
||||
import { RouteCache } from './route-cache.js';
|
||||
import { getDefaultClientDirectives } from '../client-directive/default.js';
|
||||
|
||||
/**
|
||||
* An environment represents the static parts of rendering that do not change
|
||||
|
|
|
@ -14,10 +14,10 @@ import type {
|
|||
} from '../@types/astro.js';
|
||||
import type { SerializedSSRManifest } from '../core/app/types';
|
||||
import type { PageBuildData } from '../core/build/types';
|
||||
import { buildClientDirectiveEntrypoint } from '../core/client-directive/index.js';
|
||||
import { mergeConfig } from '../core/config/config.js';
|
||||
import { info, type LogOptions } from '../core/logger/core.js';
|
||||
import { mdxContentEntryType } from '../vite-plugin-markdown/content-entry-type.js';
|
||||
import { buildClientDirectiveEntrypoint } from '../core/client-directive/index.js';
|
||||
|
||||
async function withTakingALongTimeMsg<T>({
|
||||
name,
|
||||
|
|
Loading…
Reference in a new issue