Skip to content

Commit

Permalink
Fix source maps of variant utilities that come from an @layer rule (#…
Browse files Browse the repository at this point in the history
…12508)

* Refactor

* Keep traversing sibling nodes

* Make sure the root node has a source location for the end

* Add source map test for at-rule variants

* Update changelog
  • Loading branch information
thecrypticace committed Dec 1, 2023
1 parent adb6f15 commit 2dcb1fc
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ensure configured `font-feature-settings` for `mono` are included in Preflight ([#12342](https://github.com/tailwindlabs/tailwindcss/pull/12342))
- Don't crash when given applying a variant to a negated version of a simple utility ([#12514](https://github.com/tailwindlabs/tailwindcss/pull/12514))
- Fix support for slashes in arbitrary modifiers ([#12515](https://github.com/tailwindlabs/tailwindcss/pull/12515))
- Fix source maps of variant utilities that come from an `@layer` rule ([#12508](https://github.com/tailwindlabs/tailwindcss/pull/12508))

## [3.3.5] - 2023-10-25

Expand Down
3 changes: 3 additions & 0 deletions src/lib/expandTailwindAtRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ export default function expandTailwindAtRules(context) {
)
}

// TODO: Why is the root node having no source location for `end` possible?
root.source.end = root.source.end ?? root.source.start

// If we've got a utility layer and no utilities are generated there's likely something wrong
const hasUtilityVariants = variantNodes.some(
(node) => node.raws.tailwind?.parentLayer === 'utilities'
Expand Down
49 changes: 35 additions & 14 deletions src/util/cloneNodes.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,49 @@
/**
* @param {import('postcss').Container[]} nodes
* @param {any} source
* @param {any} raws
* @returns {import('postcss').Container[]}
*/
export default function cloneNodes(nodes, source = undefined, raws = undefined) {
return nodes.map((node) => {
let cloned = node.clone()

// We always want override the source map
// except when explicitly told not to
let shouldOverwriteSource = node.raws.tailwind?.preserveSource !== true || !cloned.source

if (source !== undefined && shouldOverwriteSource) {
cloned.source = source

if ('walk' in cloned) {
cloned.walk((child) => {
child.source = source
})
}
}

if (raws !== undefined) {
cloned.raws.tailwind = {
...cloned.raws.tailwind,
...raws,
}
}

if (source !== undefined) {
traverse(cloned, (node) => {
// Do not traverse nodes that have opted
// to preserve their original source
let shouldPreserveSource = node.raws.tailwind?.preserveSource === true && node.source
if (shouldPreserveSource) {
return false
}

// Otherwise we can safely replace the source
// And continue traversing
node.source = source
})
}

return cloned
})
}

/**
* Traverse a tree of nodes and don't traverse children if the callback
* returns false. Ideally we'd use Container#walk instead of this
* function but it stops traversing siblings too.
*
* @param {import('postcss').Container} node
* @param {(node: import('postcss').Container) => boolean} onNode
*/
function traverse(node, onNode) {
if (onNode(node) !== false) {
node.each?.((child) => traverse(child, onNode))
}
}
7 changes: 6 additions & 1 deletion tests/source-maps.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ crosscheck(({ stable, oxide }) => {
'source maps for layer rules are not rewritten to point to @tailwind directives',
async () => {
let config = {
content: [{ raw: `font-normal foo hover:foo` }],
content: [{ raw: `font-normal foo hover:foo lg:foo` }],
}

let utilitiesFile = postcss.parse(
Expand Down Expand Up @@ -535,6 +535,11 @@ crosscheck(({ stable, oxide }) => {
'3:12 -> 7:12',
'4:14-35 -> 8:14-35',
'5:12 -> 9:12',
'1:0 -> 10:12',
'3:12 -> 11:12',
'4:14-35 -> 12:14-35',
'5:12 -> 13:12',
'1:0 -> 14:0',
])
}
)
Expand Down

0 comments on commit 2dcb1fc

Please sign in to comment.