cloudflare-worker-deploy/build.zig.zon
Emil Lerch 7ce8fd1007
All checks were successful
Generic zig build / build (push) Successful in 2m8s
add index.js to build.zig.zon
2024-05-11 02:32:42 -07:00

27 lines
913 B
Plaintext

.{
.name = "cloudflare-worker-deploy",
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.0.0",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
.minimum_zig_version = "0.12.0",
// Specifies the set of files and directories that are included in this package.
// Only files and directories listed here are included in the `hash` that
// is computed for this package.
// Paths are relative to the build root. Use the empty string (`""`) to refer to
// the build root itself.
// A directory listed here means that all files within, recursively, are included.
.paths = .{
"build.zig",
"build.zig.zon",
"index.js",
"src",
"LICENSE",
"README.md",
},
}