We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e25691 commit 00ba670Copy full SHA for 00ba670
bin/helpers/archiver.js
@@ -39,7 +39,7 @@ const archiveSpecs = (runSettings, filePath) => {
39
40
let allowedFileTypes = [ 'js', 'json', 'txt', 'ts' ]
41
allowedFileTypes.forEach(fileType => {
42
- archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: ['node_modules/**', 'package-lock.json'] });
+ archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: ['node_modules/**', 'package-lock.json', 'package.json'] });
43
});
44
archive.append(packageJSON, { name: 'package.json' });
45
0 commit comments