diff --git a/bin/helpers/constants.js b/bin/helpers/constants.js index 04f62613..f4219805 100644 --- a/bin/helpers/constants.js +++ b/bin/helpers/constants.js @@ -131,7 +131,19 @@ const messageTypes = { const allowedFileTypes = ['js', 'json', 'txt', 'ts', 'feature', 'features', 'pdf', 'jpg', 'jpeg', 'png', 'zip', 'npmrc', 'xml', 'doc', 'docx', 'ppt', 'pptx', 'xls', 'xlsx', 'jsx', 'coffee', 'cjsx', 'csv', 'tsv', 'yml', 'yaml']; -const filesToIgnoreWhileUploading = ['**/node_modules/**', 'node_modules/**', 'package-lock.json', 'package.json', 'browserstack-package.json', 'tests.zip', 'cypress.json'] +const filesToIgnoreWhileUploading = [ + '**/node_modules/**', + 'node_modules/**', + 'package-lock.json', + 'package.json', + 'browserstack-package.json', + 'tests.zip', + 'cypress.json', + '.idea/**', + '.vscode/**', + '.npm/**', + '.yarn/**', +]; const specFileTypes = ['js', 'ts', 'feature', 'jsx', 'coffee', 'cjsx'];