blob: 4accedbe5abd66a78339d8587643541e7ce2bf35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
return {
build = {
{verbose = true},
{"fnl/**/*macro*.fnl", false}, -- dont compile macro files
{"init.fnl", true},
{"fnl/conf/**/*.fnl", true},
-- This will only compile init.fnl, all other fnl/ files will behave as normal.
-- Or you could enable other patterns too,
-- {"colors/*.fnl", true},
-- {"fnl/**/*.fnl", true},
}
}
|