Skip to content

Commit 42cf0db

Browse files
authored
Exclude redundant files from publish process (#15856)
1 parent 4a04d20 commit 42cf0db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Gulpfile.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ function createWorker(useWorker) {
264264
async function buildBabel(useWorker, ignore = []) {
265265
const worker = createWorker(useWorker);
266266
const files = new Glob(defaultSourcesGlob, {
267-
ignore: ignore.map(p => `./${p.src}/**`),
267+
ignore: ignore.map(p => `${p.src}/**`),
268268
posix: true,
269269
});
270270

0 commit comments

Comments
 (0)