@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 +2 -0
- package/dist/semantic.scss +1 -0
- package/dist/tokens.cjs.development.js +1 -1
- package/dist/tokens.cjs.development.js.map +1 -1
- package/dist/tokens.cjs.production.min.js +1 -1
- package/dist/tokens.cjs.production.min.js.map +1 -1
- package/dist/tokens.esm.js +1 -1
- package/dist/tokens.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/base.scss
CHANGED
package/dist/semantic.scss
CHANGED
|
@@ -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
|
}
|