-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunner.go
More file actions
236 lines (221 loc) · 6.19 KB
/
runner.go
File metadata and controls
236 lines (221 loc) · 6.19 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Package runner is used to build and minify the css and js files.
package main
// Runner is a placeholder for esbuild to build css and js files.
// To use, run `go run runner/runner.go` and it will minify the css and js files.
import (
"fmt"
"os"
"path/filepath"
"time"
"github.com/evanw/esbuild/pkg/api"
)
const (
C = "© Defacto2"
ECMAScript = api.ES2020
)
// NamedCSS returns the base filenames of the CSS files to build.
// The files are located in the assets/css directory.
func NamedCSS() []string {
return []string{"layout"}
}
// NamedJS returns the base filenames of the JS files to build.
// The files are located in the assets/js directory.
func NamedJS() []string {
return []string{
"editor-forapproval",
"htmx-response-targets",
"votes-pouet",
}
}
// CSS are the options to build the minified CSS files.
func CSS(name string) api.BuildOptions {
min := name + ".min.css"
entry := filepath.Join("assets", "css", name+".css")
output := filepath.Join("public", "css", min)
return api.BuildOptions{
EntryPoints: []string{entry},
Outfile: output,
Write: true,
Bundle: false,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"css": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
// JS are the options to build the minified JS files.
func JS(name string) api.BuildOptions {
min := name + ".min.js"
entry := filepath.Join("assets", "js", name+".js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entry},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: false,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func Artifact() api.BuildOptions {
min := "editor-artifact.min.js"
entryjs := filepath.Join("assets", "js", "editor-artifact.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func EditorAssets() api.BuildOptions {
min := "editor-assets.min.js"
entryjs := filepath.Join("assets", "js", "editor-assets.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func Layout() api.BuildOptions {
min := "layout.min.js"
entryjs := filepath.Join("assets", "js", "layout.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func HtmxExts() api.BuildOptions {
min := "htmx-response-targets.min.js"
entryjs := filepath.Join("assets", "js", "htmx-response-targets.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
}
}
func Readme() api.BuildOptions {
min := "readme.min.js"
entryjs := filepath.Join("assets", "js", "readme.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func Uploader() api.BuildOptions {
min := "uploader.min.js"
entryjs := filepath.Join("assets", "js", "uploader.js")
output := filepath.Join("public", "js", min)
return api.BuildOptions{
EntryPoints: []string{entryjs},
Outfile: output,
Target: ECMAScript,
Write: true,
Bundle: true,
MinifyWhitespace: true,
MinifyIdentifiers: true,
MinifySyntax: true,
Banner: map[string]string{
"js": fmt.Sprintf("/* %s %s %s */", min, C, time.Now().Format("2006")),
},
}
}
func main() {
for _, name := range NamedCSS() {
result := api.Build(CSS(name))
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "CSS build failed: %v\n", result.Errors)
}
}
for _, name := range NamedJS() {
result := api.Build(JS(name))
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(EditorAssets())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(Artifact())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(HtmxExts())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(Layout())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(Readme())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
{
result := api.Build(Uploader())
if len(result.Errors) > 0 {
fmt.Fprintf(os.Stderr, "JS build failed: %v\n", result.Errors)
}
}
}