@gesslar/sassy 3.0.0 → 3.1.0
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/package.json +1 -1
- package/src/Compiler.js +1 -1
package/package.json
CHANGED
package/src/Compiler.js
CHANGED
|
@@ -117,7 +117,7 @@ export default class Compiler {
|
|
|
117
117
|
// Assemble into one object with the proper keys
|
|
118
118
|
const colors = workColors.reduce(reducer, {})
|
|
119
119
|
const tokenColors = this.#composeArray(workTokenColors)
|
|
120
|
-
const semanticTokenColors = workSemanticTokenColors
|
|
120
|
+
const semanticTokenColors = this.#composeObject(workSemanticTokenColors)
|
|
121
121
|
|
|
122
122
|
// Mix and maaatch all jumbly wumbly...
|
|
123
123
|
const output = Data.mergeObject(
|