mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
6014037441
commit
275d0d1683
2 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue