mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* immediately take the `safelist` values into account
Currently we had to manually add them in the `setupTrackingContext`,
`setupWatchingContext` and the `cli`.
This was a bit cumbersome, because the `safelist` function (to resolve
regex patterns) was implemented on the context. This means that we had
to do something like this:
```js
let changedContent = []
let context = createContext(config, changedContent)
for (let content of context.safelist()) {
changedContent.push(content)
}
```
This just feels wrong in general, so now it is handled internally for
you which means that we can't mess it up anymore in those 3 spots.
* drop the dot from the extension
Our transformers and extractors are implemented for `html` for example.
However the `path.extname()` returns `.html`.
This isn't an issue by default, but it could be for with custom
extractors / transformers.
* normalize the configuration
* make shared cache local per extractor
* ensure we always have an `extension`
Defaults to `html`
* splitup custom-extractors test
* update old config structure to new structure
* ensure we validate the "old" structure, and warn if invalid
* add tests with "old" config, to ensure it keeps working
* add missing `content` object
* inline unnecessary function abstraction
67 lines
1.4 KiB
JavaScript
67 lines
1.4 KiB
JavaScript
import { run, html, css } from './util/run'
|
|
|
|
function customTransformer(content) {
|
|
return content.replace(/uppercase/g, 'lowercase')
|
|
}
|
|
|
|
test('transform function', () => {
|
|
let config = {
|
|
content: {
|
|
files: [{ raw: html`<div class="uppercase"></div>` }],
|
|
transform: customTransformer,
|
|
},
|
|
}
|
|
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
expect(result.css).toMatchFormattedCss(css`
|
|
.lowercase {
|
|
text-transform: lowercase;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
test('transform.DEFAULT', () => {
|
|
let config = {
|
|
content: {
|
|
files: [{ raw: html`<div class="uppercase"></div>` }],
|
|
transform: {
|
|
DEFAULT: customTransformer,
|
|
},
|
|
},
|
|
}
|
|
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
expect(result.css).toMatchFormattedCss(css`
|
|
.lowercase {
|
|
text-transform: lowercase;
|
|
}
|
|
`)
|
|
})
|
|
})
|
|
|
|
test('transform.{extension}', () => {
|
|
let config = {
|
|
content: {
|
|
files: [
|
|
{ raw: html`<div class="uppercase"></div>`, extension: 'html' },
|
|
{ raw: html`<div class="uppercase"></div>`, extension: 'php' },
|
|
],
|
|
transform: {
|
|
html: customTransformer,
|
|
},
|
|
},
|
|
}
|
|
|
|
return run('@tailwind utilities', config).then((result) => {
|
|
expect(result.css).toMatchFormattedCss(css`
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
.lowercase {
|
|
text-transform: lowercase;
|
|
}
|
|
`)
|
|
})
|
|
})
|