mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* ensure that we compile the postcss nesting plugin * re-add optional chaining This will allow us to be 100% sure that we can safely call hasOwnProperty in case we get some very strange objects. This will now also be compiled/transpiled by esbuild. * import the internal postcss nesting plugin This allows us to work on it without re-compiling while running tests. Just like we do with all other code. * update changelog
200 lines
3.5 KiB
JavaScript
200 lines
3.5 KiB
JavaScript
import postcss from 'postcss'
|
|
import postcssNested from 'postcss-nested'
|
|
import plugin from '../../../src/postcss-plugins/nesting'
|
|
|
|
it('should be possible to load a custom nesting plugin', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(
|
|
await run(input, function (root) {
|
|
root.walkRules((rule) => {
|
|
rule.selector += '-modified'
|
|
})
|
|
})
|
|
).toMatchCss(css`
|
|
.foo-modified {
|
|
color: black;
|
|
@media screen(md) {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
it('should be possible to load a custom nesting plugin by name (string) instead', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input, 'postcss-nested')).toMatchCss(css`
|
|
.foo {
|
|
color: black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
it('should default to the bundled postcss-nested plugin (no options)', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input)).toMatchCss(css`
|
|
.foo {
|
|
color: black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
it('should default to the bundled postcss-nested plugin (empty options)', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input, {})).toMatchCss(css`
|
|
.foo {
|
|
color: black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
it('should be possible to use postcss-nested plugin with options', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input, postcssNested({ noIsPseudoSelector: true }))).toMatchCss(css`
|
|
.foo {
|
|
color: black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('@screen rules are replaced with media queries', async () => {
|
|
let input = css`
|
|
.foo {
|
|
color: black;
|
|
@screen md {
|
|
color: blue;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input, postcssNested)).toMatchCss(css`
|
|
.foo {
|
|
color: black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
color: blue;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
test('@screen rules can work with `@apply`', async () => {
|
|
let input = css`
|
|
.foo {
|
|
@apply bg-black;
|
|
@screen md {
|
|
@apply bg-blue-500;
|
|
}
|
|
}
|
|
`
|
|
|
|
expect(await run(input, postcssNested)).toMatchCss(css`
|
|
.foo {
|
|
@apply bg-black;
|
|
}
|
|
|
|
@media screen(md) {
|
|
.foo {
|
|
@apply bg-blue-500;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
// ---
|
|
|
|
function indentRecursive(node, indent = 0) {
|
|
node.each &&
|
|
node.each((child, i) => {
|
|
if (!child.raws.before || child.raws.before.includes('\n')) {
|
|
child.raws.before = `\n${node.type !== 'rule' && i > 0 ? '\n' : ''}${' '.repeat(indent)}`
|
|
}
|
|
child.raws.after = `\n${' '.repeat(indent)}`
|
|
indentRecursive(child, indent + 1)
|
|
})
|
|
}
|
|
|
|
function formatNodes(root) {
|
|
indentRecursive(root)
|
|
if (root.first) {
|
|
root.first.raws.before = ''
|
|
}
|
|
}
|
|
|
|
async function run(input, options) {
|
|
return (
|
|
await postcss([options === undefined ? plugin : plugin(options), formatNodes]).process(input, {
|
|
from: undefined,
|
|
})
|
|
).toString()
|
|
}
|
|
|
|
function css(templates) {
|
|
return templates.join('')
|
|
}
|