Skip to content

Commit 8b5e5d4

Browse files
committed
adding missing semicolon
1 parent cc04cbf commit 8b5e5d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/helpers/archiver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const archiveSpecs = (bsConfig, filePath) => {
3939

4040
let allowedFileTypes = [ 'js', 'json', 'txt', 'ts' ]
4141
allowedFileTypes.forEach(fileType => {
42-
archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: 'node_modules/**' })
42+
archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: 'node_modules/**' });
4343
});
4444
archive.append(packageJSON, { name: 'package.json' });
4545

0 commit comments

Comments
 (0)