-
Notifications
You must be signed in to change notification settings - Fork 0
/
b0x.toml
108 lines (88 loc) · 2.33 KB
/
b0x.toml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# all folders and files are relative to the path
# where fileb0x was run at!
# default: main
pkg = "main"
# destination
dest = "./"
# gofmt
# type: bool
# default: false
fmt = false
# build tags for the main b0x.go file
tags = ""
# compress files
# at the moment, only supports gzip
#
# type: object
[compression]
# activates the compression
#
# type: bool
# default: false
compress = true
# valid values are:
# -> "NoCompression"
# -> "BestSpeed"
# -> "BestCompression"
# -> "DefaultCompression" or ""
#
# type: string
# default: "DefaultCompression" // when: Compress == true && Method == ""
method = ""
# true = do it yourself (the file is written as gzip compressed file into the memory file system)
# false = decompress files at run time (while writing file into memory file system)
#
# type: bool
# default: false
keep = false
# ---------------
# -- DANGEROUS --
# ---------------
#
# cleans the destination folder (only b0xfiles)
# you should use this when using the spread function
# type: bool
# default: false
clean = false
# default: ab0x.go
output = "ab0x.go"
# [unexporTed] builds non-exporTed functions, variables and types...
# type: bool
# default: false
unexporTed = false
# [spread] means it will make a file to hold all fileb0x data
# and each file into a separaTed .go file
#
# example:
# theres 2 files in the folder assets, they're: hello.json and world.txt
# when spread is activaTed, fileb0x will make a file:
# b0x.go or [output]'s data, assets_hello.json.go and assets_world.txt.go
#
#
# type: bool
# default: false
spread = false
# [debug] is a debug mode where the files are read directly from the file
# sytem. Useful for web dev when files change when the server is running.
# type: bool
# default: false
debug = false
[[custom]]
# everything inside the folder
# type: array of strings
files = ["./index.html"]
# base is the path that will be removed from all files' path
# type: string
base = ""
# prefix is the path that will be added to all files' path
# type: string
prefix = ""
# build tags for this set of files
# it will only work if spread mode is enabled
tags = ""
# if you have difficulty to understand what base and prefix is
# think about it like this: [prefix] will replace [base]
# accetps glob
# type: array of strings
exclude = []
# end: custom