We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ee3ae commit ae79e03Copy full SHA for ae79e03
core/lib/patternlab.js
@@ -180,6 +180,10 @@ var patternlab_engine = function (config) {
180
console.log(patternlab.package.version);
181
}
182
183
+ function getSupportedTemplateExtensions(){
184
+ return patternlab.engines.getSupportedFileExtensions();
185
+ }
186
+
187
function help() {
188
189
console.log('');
@@ -629,6 +633,9 @@ var patternlab_engine = function (config) {
629
633
},
630
634
installplugin: function (pluginName) {
631
635
installPlugin(pluginName);
636
+ },
637
+ getSupportedTemplateExtensions: function () {
638
+ return getSupportedTemplateExtensions();
632
639
640
};
641
0 commit comments