0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Matt Kane 2025-01-16 09:06:34 +00:00 committed by astrobot-houston
parent 2d259cf4ab
commit 9f34e3f889
4 changed files with 3 additions and 6 deletions

View file

@ -23,7 +23,6 @@ import {
safeStringify,
} from './utils.js';
import { type WrappedWatcher, createWatcherWrapper } from './watcher.js';
import type { AstroConfig } from '../types/public/index.js';
export interface ContentLayerOptions {
store: MutableDataStore;
@ -32,7 +31,6 @@ export interface ContentLayerOptions {
watcher?: FSWatcher;
}
export class ContentLayer {
#logger: Logger;
#store: MutableDataStore;
@ -184,7 +182,7 @@ export class ContentLayer {
} = this.#settings.config;
const astroConfigDigest = safeStringify(hashableConfig);
const { digest: currentConfigDigest } = contentConfig.config;
this.#lastConfigDigest = currentConfigDigest;

View file

@ -124,7 +124,6 @@ export async function createContainer({
watcher: viteServer.watcher,
});
const container: Container = {
inlineConfig: inlineConfig ?? {},
fs,

View file

@ -2,6 +2,7 @@ import type nodeFs from 'node:fs';
import { fileURLToPath } from 'node:url';
import * as vite from 'vite';
import { globalContentLayer } from '../../content/content-layer.js';
import { attachContentServerListeners } from '../../content/server-listeners.js';
import { eventCliSession, telemetry } from '../../events/index.js';
import { SETTINGS_FILE } from '../../preferences/constants.js';
import type { AstroSettings } from '../../types/astro.js';
@ -13,7 +14,6 @@ import { createSafeError } from '../errors/index.js';
import { formatErrorMessage } from '../messages.js';
import type { Container } from './container.js';
import { createContainer, startContainer } from './container.js';
import { attachContentServerListeners } from '../../content/server-listeners.js';
async function createRestartedContainer(
container: Container,

View file

@ -1,10 +1,10 @@
import assert from 'node:assert/strict';
import { promises as fs, existsSync } from 'node:fs';
import { setTimeout } from 'node:timers/promises';
import { sep } from 'node:path';
import { sep as posixSep } from 'node:path/posix';
import { Writable } from 'node:stream';
import { after, before, describe, it } from 'node:test';
import { setTimeout } from 'node:timers/promises';
import * as cheerio from 'cheerio';
import * as devalue from 'devalue';
import { Logger } from '../dist/core/logger/core.js';