We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b115b64 commit d2c3f06Copy full SHA for d2c3f06
main.go
@@ -8,6 +8,7 @@ import (
8
"regexp"
9
"sort"
10
"strings"
11
+ "time"
12
)
13
14
type Flags struct {
@@ -39,6 +40,8 @@ func assert(condition bool, msg string) {
39
40
}
41
42
func templCSSSort(flags Flags) {
43
+ start := time.Now()
44
+
45
// find all .templ files in directory and subdirectories
46
var files []string
47
var err error
@@ -137,6 +140,8 @@ func templCSSSort(flags Flags) {
137
140
log.Fatal(err)
138
141
139
142
143
144
+ log.Println("Done in", time.Since(start))
145
146
147
func removeDuplicates(slice []string) []string {
0 commit comments