@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/tokens.esm.js
CHANGED
|
@@ -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
|
}
|