[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 * as fs from 'node:fs/promises';
import { existsSync } from 'node:fs';
import * as fs from 'node:fs/promises';
import nodePath from 'node:path';
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 { relative, relative as relativePath } from 'node:path';
import { fileURLToPath } from 'node:url';
import { copyFilesToFunction } from './fs.js';
export async function copyDependenciesToFunction(
{

View file

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