Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored and astrobot-houston committed Jun 27, 2023
1 parent 6014037 commit 275d0d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions packages/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/core/build/static-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 275d0d1

Please sign in to comment.