Skip to content

Commit

Permalink
Add support for Stencil (#2094)
Browse files Browse the repository at this point in the history
  • Loading branch information
KingDarBoja authored and robertohuertasm committed Jun 16, 2019
1 parent 04e636f commit c3fa372
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions icons/file_type_stencil.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/iconsManifest/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ export const languages: ILanguageCollection = {
sql: { ids: 'sql', defaultExtension: 'sql' },
squirrel: { ids: 'squirrel', defaultExtension: 'nut' },
stata: { ids: 'stata', defaultExtension: 'do' },
stencil: { ids: 'stencil', defaultExtension: 'stencil' },
stencilhtml: { ids: 'stencil-html', defaultExtension: 'html.stencil' },
stylable: { ids: 'stylable', defaultExtension: 'st.css' },
stylus: { ids: 'stylus', defaultExtension: 'styl' },
svelte: { ids: 'svelte', defaultExtension: 'svelte' },
Expand Down
6 changes: 6 additions & 0 deletions src/iconsManifest/supportedExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3040,6 +3040,12 @@ export const extensions: IFileCollection = {
languages: [languages.stata],
format: FileFormat.svg,
},
{
icon: 'stencil',
extensions: [],
languages: [languages.stencil, languages.stencilhtml],
format: FileFormat.svg,
},
{ icon: 'style', extensions: [], format: FileFormat.svg },
{
icon: 'stylelint',
Expand Down
2 changes: 2 additions & 0 deletions src/models/language/languageCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ export interface ILanguageCollection extends INativeLanguageCollection {
sqf: ILanguage;
squirrel: ILanguage;
stata: ILanguage;
stencil: ILanguage;
stencilhtml: ILanguage;
stylable: ILanguage;
stylus: ILanguage;
svelte: ILanguage;
Expand Down

0 comments on commit c3fa372

Please sign in to comment.