-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
28 lines (27 loc) · 865 Bytes
/
index.ts
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
import {
CoreSdConfig,
SemanticDarkSdConfig,
SemanticLightSdConfig,
SemanticMobileSdConfig,
SemanticSmSdConfig,
SemanticMdSdConfig,
SemanticLgSdConfig,
SemanticXlSdConfig,
Semantic2xlSdConfig,
TailWindEsmSdConfig,
TailWindCjsSdConfig,
TokenNamesSdConfig,
} from './src/generators/tailwind';
// Build Tailwind theme configuration and needed CSS variables
CoreSdConfig.buildAllPlatforms();
TokenNamesSdConfig.buildAllPlatforms();
SemanticDarkSdConfig.buildAllPlatforms();
SemanticMobileSdConfig.buildAllPlatforms();
SemanticSmSdConfig.buildAllPlatforms();
SemanticMdSdConfig.buildAllPlatforms();
SemanticLgSdConfig.buildAllPlatforms();
SemanticXlSdConfig.buildAllPlatforms();
Semantic2xlSdConfig.buildAllPlatforms();
SemanticLightSdConfig.buildAllPlatforms();
TailWindEsmSdConfig.buildAllPlatforms();
TailWindCjsSdConfig.buildAllPlatforms();