Skip to content

Commit

Permalink
Fix supported file entry (#1685)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimiC authored and robertohuertasm committed Aug 26, 2018
1 parent 36393e2 commit 806b1e2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/icon-manifest/supportedExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ export const extensions: IFileCollection = {
},
{
icon: 'excel',
extensions: ['xls', 'xlsx', 'xlsm', 'ods', 'fods' ],
extensions: ['xls', 'xlsx', 'xlsm', 'ods', 'fods'],
format: FileFormat.svg,
},
{
Expand Down Expand Up @@ -1783,7 +1783,13 @@ export const extensions: IFileCollection = {
filename: true,
format: FileFormat.svg,
},
{ icon: 'node2', extensions: [], format: FileFormat.svg, disabled: true },
{
icon: 'node2',
extensions: ['.node-version', '.nvmrc'],
filename: true,
format: FileFormat.svg,
disabled: true,
},
{
icon: 'nodemon',
extensions: ['nodemon.json'],
Expand Down

0 comments on commit 806b1e2

Please sign in to comment.