-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathtailwind-v2.ts
More file actions
74 lines (62 loc) · 2.63 KB
/
tailwind-v2.ts
File metadata and controls
74 lines (62 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { deleteFile, expectFileToMatch, writeFile } from '../../../utils/fs';
import { installPackage, uninstallPackage } from '../../../utils/packages';
import { ng, silentExec } from '../../../utils/process';
import { expectToFail } from '../../../utils/utils';
export default async function () {
// Temporarily turn off caching until the build cache accounts for the presence of tailwind
// and its configuration file. Otherwise cached builds without tailwind will cause test failures.
await ng('cache', 'off');
// Create configuration file
await silentExec('npx', 'tailwindcss@2', 'init');
// Add Tailwind directives to a component style
await writeFile('src/app/app.css', '@tailwind base; @tailwind components;');
// Add Tailwind directives to a global style
await writeFile('src/styles.css', '@tailwind base; @tailwind components;');
// Ensure installation warning is present
const { stderr } = await ng('build', '--configuration=development');
if (!stderr.includes("To enable Tailwind CSS, please install the 'tailwindcss' package.")) {
throw new Error(`Expected tailwind installation warning. STDERR:\n${stderr}`);
}
// Tailwind directives should be unprocessed with missing package
await expectFileToMatch(
'dist/test-project/browser/styles.css',
/@tailwind base;\s+@tailwind components;/,
);
await expectFileToMatch(
'dist/test-project/browser/main.js',
/@tailwind base;(?:\\n|\s*)@tailwind components;/,
);
// Install Tailwind
await installPackage('tailwindcss@2');
// Build should succeed and process Tailwind directives
await ng('build', '--configuration=development');
// Check for Tailwind output
await expectFileToMatch('dist/test-project/browser/styles.css', /::placeholder/);
await expectFileToMatch('dist/test-project/browser/main.js', /::placeholder/);
await expectToFail(() =>
expectFileToMatch(
'dist/test-project/browser/styles.css',
/@tailwind base;\s+@tailwind components;/,
),
);
await expectToFail(() =>
expectFileToMatch(
'dist/test-project/browser/main.js',
/@tailwind base;(?:\\n|\s*)@tailwind components;/,
),
);
// Remove configuration file
await deleteFile('tailwind.config.js');
// Ensure Tailwind is disabled when no configuration file is present
await ng('build', '--configuration=development');
await expectFileToMatch(
'dist/test-project/browser/styles.css',
/@tailwind base;\s+@tailwind components;/,
);
await expectFileToMatch(
'dist/test-project/browser/main.js',
/@tailwind base;(?:\\n|\s*)@tailwind components;/,
);
// Uninstall Tailwind
await uninstallPackage('tailwindcss');
}