File tree 1 file changed +9
-9
lines changed 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
(library
2
2
(name app)
3
3
(modes melange)
4
+ (enabled_if
5
+ (<> %{os_type} "Win32"))
4
6
(modules :standard \ Website)
5
7
(libraries reason-react melange.dom melange.js melange-json melange-webapi)
6
8
(preprocess
9
11
(melange.emit
10
12
(target website)
11
13
(modules Website)
14
+ (enabled_if
15
+ (<> %{os_type} "Win32"))
12
16
(module_systems
13
17
(es6 re.js))
14
18
(libraries reason-react app)
17
21
18
22
(install
19
23
(section bin)
24
+ (enabled_if
25
+ (<> %{os_type} "Win32"))
20
26
(package query-json-playground)
21
27
(files
22
28
("../node_modules/@tailwindcss/cli/dist/index.mjs" as tailwind)))
23
29
24
30
(rule
25
31
(target output.css)
32
+ (enabled_if
33
+ (<> %{os_type} "Win32"))
26
34
(deps
27
35
(source_tree .)
28
36
(:config ./tailwind.config.js)
29
37
(:input ./styles.css))
30
38
(action
31
- (run
32
- node
33
- ../node_modules/@tailwindcss/cli/dist/index.mjs
34
- -c
35
- %{config}
36
- -i
37
- %{input}
38
- -o
39
- %{target})))
39
+ (run tailwind -c %{config} -i %{input} -o %{target})))
You can’t perform that action at this time.
0 commit comments