0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
ematipico 2023-06-27 11:00:40 +00:00 committed by astrobot-houston
parent 6014037441
commit 275d0d1683
2 changed files with 10 additions and 10 deletions

View file

@ -42,15 +42,15 @@
```ts
export function integration(): AstroIntegration {
return {
name: "my-integration",
hooks: {
"astro:build:ssr": ({ entryPoints }) => {
// do something with `entryPoints`
}
}
}
}
return {
name: 'my-integration',
hooks: {
'astro:build:ssr': ({ entryPoints }) => {
// do something with `entryPoints`
},
},
};
}
```
### Patch Changes

View file

@ -3,7 +3,7 @@ import * as eslexer from 'es-module-lexer';
import glob from 'fast-glob';
import fs from 'fs';
import { bgGreen, bgMagenta, black, dim } from 'kleur/colors';
import { extname, join } from 'node:path';
import { extname } from 'node:path';
import path from 'path';
import { fileURLToPath } from 'url';
import * as vite from 'vite';