Skip to content

Commit

Permalink
tweak glob to match js vendor files
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Mar 12, 2024
1 parent 4898e9a commit 857cbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp.d/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module.exports = (src, dest, preview) => () => {
// NOTE concat already uses stat from newest combined file
.pipe(concat('js/site.js')),
vfs
.src('js/vendor/*([^.])?(.bundle).js', { ...opts, read: false })
.src('js/vendor/+([^.])?(.bundle).js', { ...opts, read: false })
.pipe(bundle(opts))
.pipe(uglify({ output: { comments: /^! / } })),
vfs
Expand Down

0 comments on commit 857cbac

Please sign in to comment.