From 6317724ca47f1521d5a41fc4dffe6b885b150466 Mon Sep 17 00:00:00 2001 From: Simon Pioli Date: Tue, 10 Oct 2017 17:09:26 +0100 Subject: [PATCH] #5 - Corrected the Sass language --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b0dbff2..9880ce5 100644 --- a/index.js +++ b/index.js @@ -105,7 +105,7 @@ function pluginInit(patternlab) { for (let j = 0; j < pluginConfig.tabsToAdd.length; j++) { let typePrism = pluginConfig.tabsToAdd[j]; if (typePrism === 'scss') { - typePrism = 'css'; + typePrism = 'sass'; } let tabSnippetLocal = tab_frontend_snippet.replace(/<>/g, pluginConfig.tabsToAdd[j]).replace(/<>/g, pluginConfig.tabsToAdd[j].toUpperCase()).replace(/<>/g, typePrism); snippetString += tabSnippetLocal + EOL;