mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* add nesting plugin * rename @tailwindcss/nesting to tailwindcss/nesting * ignore the built `nesting` plugin * add a postcss7 compat version * include `nesting` plugin when publishing * add `build-plugins` script This will allow us to keep the plugins in their dedicated folders + tests + postcss7 compatibility files. However, when we copy over the plugins to the root. For example `plugins/nesting/` -> `nesting/` we skip files like `.test.js` and `.postcss7.js`. * build plugins when running `prepublishOnly` * improve compat mode We will use a glob so that we can move all *.postcss7.* files to just *.* likewise we will also backup to *.* to *.postcss8.* for restoring purposes. Concrete example: - Current state: - index.js // PostCSS 8 implementation - index.postcss7.js // PostCSS 7 implementation - Run "compat" - index.js // PostCSS 7 implementation - index.postcss7.js // PostCSS 7 implementation - index.postcss8.js // PostCSS 8 implementation (Backup of original) - Run "compat:restore" - index.js // PostCSS 8 implementation - index.postcss7.js // PostCSS 7 implementation - X index.postcss8.js // PostCSS 8 implementation (Removed) * Update README.md * ensure we `npm install` before publishing Co-authored-by: Adam Wathan <adam.wathan@gmail.com>
177 lines
3.0 KiB
JavaScript
177 lines
3.0 KiB
JavaScript
let postcss = require('postcss')
|
|
let postcssNested = require('postcss-nested')
|
|
let plugin = require('.')
|
|
|
|
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 ooptions)', 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;
|
|
}
|
|
}
|
|
`)
|
|
})
|
|
|
|
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('')
|
|
}
|