Skip to content

Commit

Permalink
fix: copy only once even if multiple bundles are generated (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red authored Nov 22, 2023
1 parent 5a130b0 commit 8707d84
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/fuzzy-pots-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'vite-plugin-static-copy': patch
---

copy only once even if multiple bundles are generated
9 changes: 9 additions & 0 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,23 @@ export const buildPlugin = ({
silent
}: ResolvedViteStaticCopyOptions): Plugin => {
let config: ResolvedConfig
let output = false

return {
name: 'vite-plugin-static-copy:build',
apply: 'build',
configResolved(_config) {
config = _config
},
buildEnd() {
// reset for watch mode
output = false
},
async writeBundle() {
// run copy only once even if multiple bundles are generated
if (output) return
output = true

const result = await copyAll(
config.root,
config.build.outDir,
Expand Down

0 comments on commit 8707d84

Please sign in to comment.