Skip to content

Commit

Permalink
Exclude redundant files from publish process (#15856)
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Aug 11, 2023
1 parent 4a04d20 commit 42cf0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ function createWorker(useWorker) {
async function buildBabel(useWorker, ignore = []) {
const worker = createWorker(useWorker);
const files = new Glob(defaultSourcesGlob, {
ignore: ignore.map(p => `./${p.src}/**`),
ignore: ignore.map(p => `${p.src}/**`),
posix: true,
});

Expand Down

0 comments on commit 42cf0db

Please sign in to comment.