Skip to content

Commit 2ef1f62

Browse files
clydinalan-agius4
authored andcommitted
test(@angular-devkit/build-angular): skip Tailwind CSS E2E in Node.js 10
Tailwind CSS is not supported on Node.js 10.
1 parent dfc6d89 commit 2ef1f62

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/legacy-cli/e2e/tests/build/styles/tailwind.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ import { ng, silentExec } from '../../../utils/process';
44
import { expectToFail } from '../../../utils/utils';
55

66
export default async function () {
7+
// Tailwind is not supported in Node.js 10
8+
if (process.version.startsWith('v10')) {
9+
return;
10+
}
11+
712
// Install Tailwind
813
await installPackage('tailwindcss');
914

0 commit comments

Comments
 (0)