@cirrobio/sdk 0.2.17 → 0.2.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,7 +38,7 @@ exports.FILE_TXT_GENOMICS_EXTENSIONS = ['fasta', 'fna', 'fsa', 'fa', 'fastp', 'f
38
38
  /**
39
39
  * An array of file extensions that are considered TXT files.
40
40
  */
41
- exports.FILE_TXT_EXTENSIONS = ['txt', 'log', 'yml', 'cfg', 'xml', 'yaml', ...exports.FILE_DSV_EXTENSIONS, ...exports.FILE_TXT_GENOMICS_EXTENSIONS];
41
+ exports.FILE_TXT_EXTENSIONS = ['txt', 'log', 'yml', 'cfg', 'config', 'xml', 'yaml', ...exports.FILE_DSV_EXTENSIONS, ...exports.FILE_TXT_GENOMICS_EXTENSIONS];
42
42
  /**
43
43
  * An array of file extensions that are considered image files.
44
44
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirrobio/sdk",
3
- "version": "0.2.17",
3
+ "version": "0.2.19",
4
4
  "description": "SDK for Cirro",
5
5
  "author": "CirroBio",
6
6
  "repository": {
@@ -37,4 +37,4 @@
37
37
  "@aws-sdk/lib-storage": "^3.34.0",
38
38
  "@aws-sdk/s3-request-presigner": "^3.34.0"
39
39
  }
40
- }
40
+ }
@@ -41,7 +41,7 @@ export const FILE_TXT_GENOMICS_EXTENSIONS = ['fasta', 'fna', 'fsa', 'fa', 'fastp
41
41
  /**
42
42
  * An array of file extensions that are considered TXT files.
43
43
  */
44
- export const FILE_TXT_EXTENSIONS = ['txt', 'log', 'yml', 'cfg', 'xml', 'yaml', ...FILE_DSV_EXTENSIONS, ...FILE_TXT_GENOMICS_EXTENSIONS];
44
+ export const FILE_TXT_EXTENSIONS = ['txt', 'log', 'yml', 'cfg', 'config', 'xml', 'yaml', ...FILE_DSV_EXTENSIONS, ...FILE_TXT_GENOMICS_EXTENSIONS];
45
45
 
46
46
 
47
47
  /**