Skip to content

Commit a0cadd3

Browse files
author
fabianmoronzirfas
committed
Merge branch 'master' of github.com:ExtendScript/extendscript-es5-shim
2 parents 502d36b + e03b6b3 commit a0cadd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/concat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ fs.writeFileSync(path.resolve(process.cwd(), bundlePath), '');
1010
// loop folders
1111
folders.forEach(folder => {
1212
fs.readdir(folder, (err, files) => {
13+
files = files.filter(file => !(/(^|\/)\.[^\/\.]/g).test(file))
1314
files.forEach(file => {
1415
// console.log(file);
1516
let filePath = path.resolve(process.cwd(), `${folder}${file}`);
@@ -23,5 +24,4 @@ folders.forEach(folder => {
2324
});
2425
});
2526
});
26-
2727
});

0 commit comments

Comments
 (0)