Skip to content

Commit

Permalink
Fix symlinks copying
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 5, 2024
1 parent 4ebe586 commit e5a8b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/builder/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export const copy = () =>
`!${SOURCES_GLOB}/*.{${JAVASCRIPT_EXTS_STR},${TYPESCRIPT_EXT}}`,
`!${SOURCES_ONLY_GLOB}`,
],
{ dot: true, since: gulp.lastRun(copy) },
{ dot: true, since: gulp.lastRun(copy), resolveSymlinks: false },
)
.pipe(gulp.dest(BUILD))

0 comments on commit e5a8b73

Please sign in to comment.