We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23fd87d commit 762b711Copy full SHA for 762b711
gulpfile.js
@@ -123,7 +123,6 @@ function swatchJsonTransformer( json ) {
123
sassContent.push(`\t) !default,`);
124
}
125
126
- sassContent.push(variables.map( (variable) => `\t$${variable.name}: ${variable.value} !default,`).join( '\n' ));
127
// Universal variables are also included here as they are part of the a11y swatch
128
sassContent.push(universal.map( (variable) => `\t$${variable.name}: ${variable.value} !default,`).join( '\n' ));
129
@@ -135,6 +134,7 @@ function swatchJsonTransformer( json ) {
135
134
136
return sassContent.join( '\n' );
137
},
+ // TODO remove legacy
138
legacy: () => {
139
const sassContent = [];
140
if ( !colorSystem.length ) {
0 commit comments