Skip to content

Commit 6d3a41a

Browse files
committed
🔥 added files to ignore while uploading
1 parent 0b7dab9 commit 6d3a41a

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

bin/helpers/constants.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,23 @@ const messageTypes = {
131131

132132
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'];
133133

134-
const filesToIgnoreWhileUploading = ['**/node_modules/**', 'node_modules/**', 'package-lock.json', 'package.json', 'browserstack-package.json', 'tests.zip', 'cypress.json']
134+
const filesToIgnoreWhileUploading = ['**/node_modules/**',
135+
'node_modules/**',
136+
'package-lock.json',
137+
'package.json',
138+
'browserstack-package.json',
139+
'tests.zip',
140+
'cypress.json',
141+
'.idea/',
142+
'*.iml',
143+
'.vscode/',
144+
'.npm/',
145+
'.vscode-test',
146+
'.yarn/cache',
147+
'.yarn/unplugged',
148+
'.yarn/install-state.gz',
149+
'.pnp.*'
150+
]
135151

136152
const specFileTypes = ['js', 'ts', 'feature', 'jsx', 'coffee', 'cjsx'];
137153

0 commit comments

Comments
 (0)