Skip to content

Commit 3709975

Browse files
committed
chore: add build.zig.zon and package.json with release scripts
1 parent 3fed299 commit 3709975

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

build.zig.zon

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.{
2+
.name = .headwind,
3+
.version = "0.1.0",
4+
.minimum_zig_version = "0.15.0",
5+
.fingerprint = 0xa1b2c3d4e5f60003,
6+
.dependencies = .{},
7+
.paths = .{
8+
"README.md",
9+
"LICENSE",
10+
"build.zig",
11+
"build.zig.zon",
12+
"src",
13+
},
14+
}

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "zig-crosswind",
3+
"version": "0.1.0",
4+
"scripts": {
5+
"release": "pantry release patch --yes",
6+
"release:minor": "pantry release minor --yes",
7+
"release:major": "pantry release major --yes"
8+
}
9+
}

0 commit comments

Comments
 (0)