ziex 0.1.0-dev.804 → 0.1.0-dev.805

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # Ziex
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/ziex-dev/branding/main/banner.svg" alt="Ziex banner" width="100%" />
3
+ </p>
2
4
 
3
5
  A full-stack web framework for Zig. Write declarative UI components using familiar JSX patterns, transpiled to efficient Zig code.
4
6
 
package/build.zig ADDED
@@ -0,0 +1,5 @@
1
+ const std = @import("std");
2
+
3
+ pub fn build(b: *std.Build) void {
4
+ _ = b; // stub
5
+ }
package/build.zig.zon ADDED
@@ -0,0 +1,7 @@
1
+ .{
2
+ .name = .ziex_js,
3
+ .fingerprint = 0x3428b4e119b455bf,
4
+ .version = "0.1.0-dev.804",
5
+ .minimum_zig_version = "0.15.2",
6
+ .paths = .{""},
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ziex",
3
- "version": "0.1.0-dev.804",
3
+ "version": "0.1.0-dev.805",
4
4
  "description": "ZX is a framework for building web applications with Zig.",
5
5
  "main": "index.js",
6
6
  "type": "module",