Skip to content

Commit e0b730a

Browse files
userquinbrc-dd
andauthoredJul 9, 2022
feat: provide build end hook (#709)
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
1 parent 22006e8 commit e0b730a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
 

‎src/node/build/build.ts

+2
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,7 @@ export async function build(
8787
await fs.remove(siteConfig.tempDir)
8888
}
8989

90+
await siteConfig.buildEnd?.(siteConfig)
91+
9092
console.log(`build complete in ${((Date.now() - start) / 1000).toFixed(2)}s.`)
9193
}

‎src/node/config.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ export interface UserConfig<ThemeConfig = any> {
7171
* @default false
7272
*/
7373
ignoreDeadLinks?: boolean
74+
75+
/**
76+
* Build end hook: called when SSG finish.
77+
* @param siteConfig The resolved configuration.
78+
*/
79+
buildEnd?: (siteConfig: SiteConfig) => Promise<void>
7480
}
7581

7682
export type RawConfigExports<ThemeConfig = any> =
@@ -88,6 +94,7 @@ export interface SiteConfig<ThemeConfig = any>
8894
| 'mpa'
8995
| 'lastUpdated'
9096
| 'ignoreDeadLinks'
97+
| 'buildEnd'
9198
> {
9299
root: string
93100
srcDir: string
@@ -166,7 +173,8 @@ export async function resolveConfig(
166173
vite: userConfig.vite,
167174
shouldPreload: userConfig.shouldPreload,
168175
mpa: !!userConfig.mpa,
169-
ignoreDeadLinks: userConfig.ignoreDeadLinks
176+
ignoreDeadLinks: userConfig.ignoreDeadLinks,
177+
buildEnd: userConfig.buildEnd
170178
}
171179

172180
return config

0 commit comments

Comments
 (0)
Please sign in to comment.