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 1487a4e commit 1a08e89Copy full SHA for 1a08e89
bin/helpers/archiver.js
@@ -38,7 +38,7 @@ const archiveSpecs = (runSettings, filePath) => {
38
39
let allowedFileTypes = [ 'js', 'json', 'txt', 'ts', 'feature', 'features' ];
40
allowedFileTypes.forEach(fileType => {
41
- archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: ['node_modules/**', 'package-lock.json', 'package.json', 'browserstack-package.json'] });
+ archive.glob(`**/*.${fileType}`, { cwd: cypressFolderPath, matchBase: true, ignore: ['**/node_modules/**', './node_modules/**', 'package-lock.json', 'package.json', 'browserstack-package.json'] });
42
});
43
44
let packageJSON = {};
0 commit comments