mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* remove unused file using syntax.js instead * add a way to remove files that are generated from the tests Essentially setting the restore cache contents to `null` as a special value. * combine the stdout and stderr output * add jest-diff instead of relying on it existing *somewhere* This also came with a small API change. * add `--runInBand` to the test script * add dedicated cli tests for the new Tailwind CLI
16 lines
357 B
JSON
16 lines
357 B
JSON
{
|
|
"name": "tailwindcss-cli",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"build": "NODE_ENV=production node ../../lib/cli.js -i ./src/index.css -o ./dist/main.css",
|
|
"test": "jest --runInBand"
|
|
},
|
|
"jest": {
|
|
"displayName": "Tailwind CSS CLI",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/../../jest/customMatchers.js"
|
|
]
|
|
}
|
|
}
|