Test#946
Test#946DanielRuf wants to merge 0 commit intotailwindlabs:masterfrom DanielRuf:fix/prettier-codestyle
Conversation
|
I fixed the code style in this commit: This PR breaks Tailwind because of automatic semi-colon insertion, this code: return
postcss([
postcssNested({
bubble: ['screen'],
}),
]).process(style, {
parser: postcssJs,
}).root.nodes...will always return undefined because it's evaluated like this: return;
postcss([
postcssNested({
bubble: ['screen'],
}),
]).process(style, {
parser: postcssJs,
}).root.nodes;I'm on commit |
|
Running a new build for the master branch right now: https://travis-ci.org/tailwindcss/tailwindcss/builds/538930343 |
|
Not sure, it doesn't fail locally for me. Running |
|
Nevermind, it seems to work now. Not sure if there is some issue between npm and Yarn because the scripts use npm and I run |
|
At least I had also issues that files could not be resolved. After some retries and clearing the npm cache it magically worked again. |

No description provided.