+10
CHANGELOG.md
+10
CHANGELOG.md
···
1
+
# Changelog
2
+
3
+
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
## [Unreleased]
9
+
10
+
- Import source code from [/x/](https://github.com/Xe/x)
+22
Makefile
+22
Makefile
···
1
+
.PHONY: build clean deps all lint test package
2
+
3
+
build:
4
+
go build -o ./var/yeet ./cmd/yeet
5
+
6
+
clean:
7
+
rm ./var/yeet* ||:
8
+
9
+
deps:
10
+
go mod download
11
+
12
+
all: build lint test clean package
13
+
14
+
lint:
15
+
go vet ./...
16
+
go tool staticcheck ./...
17
+
18
+
test:
19
+
go test ./...
20
+
21
+
package:
22
+
go run ./cmd/yeet
+1
VERSION
+1
VERSION
···
1
+
0.0.1