We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e35c2 commit efd99cdCopy full SHA for efd99cd
1 file changed
tests/legacy-cli/e2e/tests/build/styles/tailwind.ts
@@ -4,6 +4,11 @@ import { ng, silentExec } from '../../../utils/process';
4
import { expectToFail } from '../../../utils/utils';
5
6
export default async function () {
7
+ // Tailwind is not supported in Node.js 10
8
+ if (process.version.startsWith('v10')) {
9
+ return;
10
+ }
11
+
12
// Install Tailwind
13
await installPackage('tailwindcss');
14
0 commit comments