Skip to content

Commit 0e25691

Browse files
committed
fix package-lock.json to not being included in the tests.zip
1 parent f8797a7 commit 0e25691

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 = (runSettings, 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/**', 'package-lock.json'] });
4343
});
4444
archive.append(packageJSON, { name: 'package.json' });
4545

0 commit comments

Comments
 (0)