mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Don’t move `::deep` pseudo element to end of selector when using `@apply` * Update changelog * Move pseudo-elements in two passes * Rewrite pseudo-element relocation logic * Update test `::test` is an unknown pseudo element and therefore may be actionable _and_ nestable * Add tests * Simplify tests * Simplify * run tests on CI multiple times This works around the timeouts/flakeyness of GitHub Actions * Update formatting * Add comment * Mark webkit peusdo elements as terminal * update comment * only execute the `global-setup` once * Simplify NO SORT FN YAY * Use typedefs * Update changelog * Update changelog * update again --------- Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
let { execSync } = require('child_process')
|
|
|
|
let state = { ran: false }
|
|
module.exports = function () {
|
|
if (state.ran) return
|
|
execSync('npm run build:rust', { stdio: 'ignore' })
|
|
execSync('npm run generate:plugin-list', { stdio: 'ignore' })
|
|
state.ran = true
|
|
}
|