[ci] format

This commit is contained in:
ematipico 2023-09-01 13:35:21 +00:00 committed by astrobot-houston
parent 5f2c55bb54
commit cc99b2814f
3 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,6 @@
import type { PathLike } from 'node:fs'; import type { PathLike } from 'node:fs';
import * as fs from 'node:fs/promises';
import { existsSync } from 'node:fs'; import { existsSync } from 'node:fs';
import * as fs from 'node:fs/promises';
import nodePath from 'node:path'; import nodePath from 'node:path';
import { fileURLToPath } from 'node:url'; import { fileURLToPath } from 'node:url';

View file

@ -1,8 +1,7 @@
import { relative as relativePath } from 'node:path';
import { fileURLToPath } from 'node:url';
import { relative } from 'node:path';
import { copyFilesToFunction } from './fs.js';
import type { AstroIntegrationLogger } from 'astro'; import type { AstroIntegrationLogger } from 'astro';
import { relative, relative as relativePath } from 'node:path';
import { fileURLToPath } from 'node:url';
import { copyFilesToFunction } from './fs.js';
export async function copyDependenciesToFunction( export async function copyDependenciesToFunction(
{ {

View file

@ -2,8 +2,8 @@ import type {
AstroAdapter, AstroAdapter,
AstroConfig, AstroConfig,
AstroIntegration, AstroIntegration,
RouteData,
AstroIntegrationLogger, AstroIntegrationLogger,
RouteData,
} from 'astro'; } from 'astro';
import { AstroError } from 'astro/errors'; import { AstroError } from 'astro/errors';
import glob from 'fast-glob'; import glob from 'fast-glob';