mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* WIP * WIP * Finish combining JIT and AOT plugins Still lots of clean up that can be done in some of the more complex ones, but at least it's one file per plugin now. * Remove unused import * Fix AOT generation bugs * Move corePlugins/index.js to corePlugins.js * Convert JIT files to ESM * Move tests * Reorder core plugins to match JIT order * Update AOT apply tests * Unify utils * Combine plugin lists to one single source of truth * Finish resolving merge conflicts, fix tests Co-authored-by: Adam Wathan <adam.wathan@gmail.com>
94 lines
1.8 KiB
JavaScript
94 lines
1.8 KiB
JavaScript
import postcss from 'postcss'
|
|
import tailwind from '../src/index'
|
|
|
|
function run(input, config = {}) {
|
|
return postcss([tailwind({ corePlugins: [], ...config })]).process(input, { from: undefined })
|
|
}
|
|
|
|
test('layers are grouped and inserted at the matching @tailwind rule', () => {
|
|
const input = `
|
|
@layer vanilla {
|
|
strong { font-weight: medium }
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.btn { background: blue }
|
|
}
|
|
|
|
@layer utilities {
|
|
.align-banana { text-align: banana }
|
|
}
|
|
|
|
@layer base {
|
|
h1 { font-weight: bold }
|
|
}
|
|
|
|
@layer components {
|
|
.card { border-radius: 12px }
|
|
}
|
|
|
|
@layer base {
|
|
p { font-weight: normal }
|
|
}
|
|
|
|
@layer utilities {
|
|
.align-sandwich { text-align: sandwich }
|
|
}
|
|
|
|
@layer chocolate {
|
|
a { text-decoration: underline }
|
|
}
|
|
`
|
|
|
|
const expected = `
|
|
@layer vanilla {
|
|
strong { font-weight: medium }
|
|
}
|
|
|
|
body { margin: 0 }
|
|
h1 { font-weight: bold }
|
|
p { font-weight: normal }
|
|
|
|
.input { background: white }
|
|
.btn { background: blue }
|
|
.card { border-radius: 12px }
|
|
|
|
.float-squirrel { float: squirrel }
|
|
.align-banana { text-align: banana }
|
|
.align-sandwich { text-align: sandwich }
|
|
|
|
@layer chocolate {
|
|
a { text-decoration: underline }
|
|
}
|
|
`
|
|
|
|
expect.assertions(2)
|
|
|
|
return run(input, {
|
|
plugins: [
|
|
function ({ addBase, addComponents, addUtilities }) {
|
|
addBase({
|
|
body: {
|
|
margin: 0,
|
|
},
|
|
})
|
|
|
|
addComponents({
|
|
'.input': { background: 'white' },
|
|
})
|
|
|
|
addUtilities({
|
|
'.float-squirrel': { float: 'squirrel' },
|
|
})
|
|
},
|
|
],
|
|
}).then((result) => {
|
|
expect(result.css).toMatchCss(expected)
|
|
expect(result.warnings().length).toBe(0)
|
|
})
|
|
})
|