From 9cf95f299135474af45fe60edb7cfabe94853a42 Mon Sep 17 00:00:00 2001 From: Drew McArthur Date: Wed, 15 Mar 2023 17:10:13 -0600 Subject: [PATCH] Update config.ts to include .parquet files in supportedFileTypes closes #329 --- src/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.ts b/src/config.ts index c53f9dd..66a7fd1 100644 --- a/src/config.ts +++ b/src/config.ts @@ -11,6 +11,7 @@ export const supportedFilesFilters: any = { 'JSON': ['json', 'jsonl', 'json5', 'hjson', 'ndjson'], 'CSV/TSV': ['csv', 'tsv', 'tab', 'txt'], 'Excel': ['dif', 'ods', 'xls', 'xlsb', 'xlsx', 'xlsm', 'xml', 'html'], + 'Parquet': ['parquet'], 'Arrow': ['arrow'], 'Avro': ['avro'], 'Config': ['config'],