@vettvangur/design-system 2.0.60 → 2.0.61
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/index.js +9 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1759,6 +1759,15 @@ function groupTypography(variableSet) {
|
|
|
1759
1759
|
message('grouping typography...');
|
|
1760
1760
|
const col = variableSet.typography;
|
|
1761
1761
|
const toks = col?.tokens || {};
|
|
1762
|
+
if (process$1.env.DS_DEBUG) {
|
|
1763
|
+
const keys = Object.keys(toks);
|
|
1764
|
+
console.log('[design-system] typography: token count =', keys.length);
|
|
1765
|
+
if (keys.length) {
|
|
1766
|
+
console.log('[design-system] typography: token key sample =', keys.slice(0, 25).join(', '));
|
|
1767
|
+
const ff = keys.filter(k => k.startsWith('font-family-'));
|
|
1768
|
+
console.log('[design-system] typography: font-family key sample =', ff.slice(0, 25).join(', '));
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1762
1771
|
const out = {
|
|
1763
1772
|
families: {},
|
|
1764
1773
|
weights: {},
|