Преглед изворни кода

Merge pull request #134 from NullVoxPopuli/patch-1

Add hbs alias to handlebars
Alexandru Dima пре 4 година
родитељ
комит
b60c47312b
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/handlebars/handlebars.contribution.ts

+ 1 - 1
src/handlebars/handlebars.contribution.ts

@@ -8,7 +8,7 @@ import { registerLanguage } from '../_.contribution';
 registerLanguage({
 	id: 'handlebars',
 	extensions: ['.handlebars', '.hbs'],
-	aliases: ['Handlebars', 'handlebars'],
+	aliases: ['Handlebars', 'handlebars', 'hbs'],
 	mimetypes: ['text/x-handlebars-template'],
 	loader: () => import('./handlebars')
 });