@entur/tokens 3.17.1 → 3.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4006,7 +4006,7 @@ function createColorsOutputString(_ref) {
4006
4006
  var asStatement = includeAs ? ' as *' : '';
4007
4007
  var importStatements = fileNames.map(function (fileName) {
4008
4008
  var importPath = "'@entur/tokens/dist/" + fileName + "." + extension + "'";
4009
- return IMPORT_SYNTAX[extension] + " " + importPath + asStatement + ";";
4009
+ return "" + (extension === 'scss' ? '@forward ' + importPath + ';\n' : '') + IMPORT_SYNTAX[extension] + " " + importPath + asStatement + ";";
4010
4010
  });
4011
4011
  return importStatements.join('\n');
4012
4012
  }