File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sudo: required
55
66language : go
77go :
8- - " 1.13 .1"
8+ - " 1.18 .1"
99
1010addons :
1111 apt :
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ license-dir:
2222 mkdir -p build/license || true
2323
2424download-tools :
25- GO111MODULE=off go get -u golang.org/x/lint/golint
26- GO111MODULE=off go get -u golang.org/x/tools/cmd/goimports
27- GO111MODULE=off go get -u github.com/gobuffalo/packr/v2/packr2
25+ go install golang.org/x/tools/cmd/goimports@v0.1.10
26+ go install github.com/gobuffalo/packr/v2/packr2@v2.7.1
27+
2828
2929generate-go :
3030 go run hack/gqlgen/gqlgen.go
@@ -36,7 +36,6 @@ generate: generate-go generate-js
3636
3737lint-go :
3838 go vet ./...
39- golint -set_exit_status $(shell go list ./...)
4039 goimports -l $(shell find . -type f -name '* .go' -not -path "./vendor/* ")
4140
4241lint-js :
Original file line number Diff line number Diff line change 88 < link rel ="icon " type ="image/png " sizes ="16x16 " href ="%PUBLIC_URL%/favicon-16x16.png " />
99 < link rel ="icon " type ="image/png " sizes ="192x192 " href ="%PUBLIC_URL%/favicon-192x192.png " />
1010 < link rel ="icon " type ="image/png " sizes ="256x256 " href ="%PUBLIC_URL%/favicon-256x256.png " />
11+ < link rel ="manifest " href ="%PUBLIC_URL%/manifest.json " />
1112
1213 < meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no " />
1314 < meta name ="theme-color " content ="#000000 " />
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Traggo" ,
3+ "short_name" : " Traggo" ,
4+ "description" : " Tag-based time tracking" ,
5+ "theme_color" : " #9bd7fe" ,
6+ "background_color" : " #3f51b5" ,
7+ "display" : " standalone" ,
8+ "scope" : " /" ,
9+ "start_url" : " /" ,
10+ "icons" : [
11+ {
12+ "src" : " /favicon-16x16.png" ,
13+ "sizes" : " 16x16" ,
14+ "type" : " image/png"
15+ }, {
16+ "src" : " /favicon-32x32.png" ,
17+ "sizes" : " 32x32" ,
18+ "type" : " image/png"
19+ }, {
20+ "src" : " /favicon-192x192.png" ,
21+ "sizes" : " 192x192" ,
22+ "type" : " image/png"
23+ }, {
24+ "src" : " /favicon-256x256.png" ,
25+ "sizes" : " 256x256" ,
26+ "type" : " image/png"
27+ }
28+ ]
29+ }
You can’t perform that action at this time.
0 commit comments