rastrillo / pwa Public

Clone
git clone https://amadan.net/rastrillo/pwa

Plain git — no account needed to clone.

Download

Download this file

1export GOFLAGS = -mod=mod
2export CGO_ENABLED = 0
3.PHONY: ci go js example browser
4ci: go js example browser
5go:
6 @test -z "$$(gofmt -l .)"
7 go build ./...
8 go vet ./...
9 go test ./... -count=1
10js:
11 node --test test/*.test.mjs
12example:
13 @mkdir -p .build
14 cd examples/basic && go build -o ../../.build/basic . && go vet ./... && go test ./... -count=1
15browser:
16 npm ci --ignore-scripts
17 node test/browser.mjs
18