@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.
package/dist/base.scss CHANGED
@@ -1,4 +1,6 @@
1
+ @forward '@entur/tokens/dist/semantic.scss';
1
2
  @use '@entur/tokens/dist/semantic.scss' as *;
3
+ @forward '@entur/tokens/dist/transport.scss';
2
4
  @use '@entur/tokens/dist/transport.scss' as *;
3
5
 
4
6
  /* DO NOT CHANGE!*/
@@ -1,3 +1,4 @@
1
+ @forward '@entur/tokens/dist/primitive.scss';
1
2
  @use '@entur/tokens/dist/primitive.scss' as *;
2
3
 
3
4
  /* DO NOT CHANGE!*/
@@ -4010,7 +4010,7 @@ function createColorsOutputString(_ref) {
4010
4010
  var asStatement = includeAs ? ' as *' : '';
4011
4011
  var importStatements = fileNames.map(function (fileName) {
4012
4012
  var importPath = "'@entur/tokens/dist/" + fileName + "." + extension + "'";
4013
- return IMPORT_SYNTAX[extension] + " " + importPath + asStatement + ";";
4013
+ return "" + (extension === 'scss' ? '@forward ' + importPath + ';\n' : '') + IMPORT_SYNTAX[extension] + " " + importPath + asStatement + ";";
4014
4014
  });
4015
4015
  return importStatements.join('\n');
4016
4016
  }