vertz 0.2.12 → 0.2.13
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/CHANGELOG.md +20 -0
- package/README.md +36 -19
- package/package.json +17 -12
- package/src/ui-server.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# vertz
|
|
2
2
|
|
|
3
|
+
## 0.2.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#961](https://github.com/vertz-dev/vertz/pull/961) [`4bcfa46`](https://github.com/vertz-dev/vertz/commit/4bcfa46b97623c8d42b174cf3ac3d627c4ef3491) Thanks [@viniciusdacal](https://github.com/viniciusdacal)! - Add `vertz/ui-server` subpath export to meta package
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`337e1b3`](https://github.com/vertz-dev/vertz/commit/337e1b3dfca6768575e57cf54069beb4f37366b7), [`2f6d58a`](https://github.com/vertz-dev/vertz/commit/2f6d58a818d0ecbbd7999b0bfc072e2424640f59), [`127df59`](https://github.com/vertz-dev/vertz/commit/127df59424102142ac1aee9dfcc31b22c2959343), [`a5ceec8`](https://github.com/vertz-dev/vertz/commit/a5ceec812613d92f7261407e86b1a39993687a7a), [`3a79c2f`](https://github.com/vertz-dev/vertz/commit/3a79c2fad5bfbaed61f252cf2b908592e12a82bd), [`58fffce`](https://github.com/vertz-dev/vertz/commit/58fffceb6c4e1660fb3d4d1891cd4ce662dca22b), [`efda760`](https://github.com/vertz-dev/vertz/commit/efda76032901138dca7a22acd60ad947a4bdf02a), [`a9211ca`](https://github.com/vertz-dev/vertz/commit/a9211ca751305f541987b93d493d349838cf4822), [`3d2799a`](https://github.com/vertz-dev/vertz/commit/3d2799ac4c3e0d8f65d864b4471e205a64db886a), [`7b125db`](https://github.com/vertz-dev/vertz/commit/7b125db968ba9157ce97932b392cb3be7fcc0344), [`d4af7d0`](https://github.com/vertz-dev/vertz/commit/d4af7d0fa0ff1f3cfc21625e9bd16621f833f9cd), [`a82b2ec`](https://github.com/vertz-dev/vertz/commit/a82b2ec1ccc94f278916796783c33d81ffead211), [`45e84cf`](https://github.com/vertz-dev/vertz/commit/45e84cf2f11123bf3ed66ae8cf311efc1393238c), [`1011e51`](https://github.com/vertz-dev/vertz/commit/1011e51fbfe528e35930e3dd5c32b76568b0684a), [`de34f8d`](https://github.com/vertz-dev/vertz/commit/de34f8dc9d3e69b507874f33d80bf7dc4420001d), [`4eac71c`](https://github.com/vertz-dev/vertz/commit/4eac71c98369d12a0cd7a3cbbeda60ea7cc5bd05), [`eab229b`](https://github.com/vertz-dev/vertz/commit/eab229bc63a08ae6877ff4905d99c364a8694358)]:
|
|
10
|
+
- @vertz/server@0.2.13
|
|
11
|
+
- @vertz/ui@0.2.13
|
|
12
|
+
- @vertz/ui-compiler@0.2.13
|
|
13
|
+
- @vertz/ui-server@0.2.13
|
|
14
|
+
- @vertz/db@0.2.13
|
|
15
|
+
- @vertz/fetch@0.2.13
|
|
16
|
+
- @vertz/errors@0.2.13
|
|
17
|
+
- @vertz/cloudflare@0.2.13
|
|
18
|
+
- @vertz/schema@0.2.13
|
|
19
|
+
- @vertz/testing@0.2.13
|
|
20
|
+
- @vertz/tui@0.2.13
|
|
21
|
+
- @vertz/ui-primitives@0.2.13
|
|
22
|
+
|
|
3
23
|
## 0.2.12
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,34 +1,51 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Vertz
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
**If it builds, it works.** The TypeScript framework where types flow from database to browser.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Define your schema once — get a typed database layer, a typed API with auto-generated OpenAPI, and a compiled UI with fine-grained reactivity.
|
|
6
6
|
|
|
7
|
-
```
|
|
7
|
+
```
|
|
8
|
+
d.table() → entity() → createServer() → query() / form()
|
|
9
|
+
schema CRUD API serve it use it in UI
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bun add vertz
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Import what you need via subpath exports:
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
8
21
|
import { createServer } from 'vertz/server';
|
|
9
22
|
import { s } from 'vertz/schema';
|
|
10
23
|
import { createDb } from 'vertz/db';
|
|
11
24
|
import { createTestClient } from 'vertz/testing';
|
|
25
|
+
import { query, form, mount } from 'vertz/ui';
|
|
12
26
|
```
|
|
13
27
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- **Tree-shakeable** — importing `vertz/server` only pulls in `@vertz/server`, nothing else.
|
|
17
|
-
- **One dependency** — `npm install vertz` gives you the whole framework.
|
|
18
|
-
- **No barrel file** — there's no default `import from 'vertz'`; every import is explicit.
|
|
28
|
+
One dependency. Tree-shakeable. No barrel file — every import is explicit.
|
|
19
29
|
|
|
20
30
|
## Available subpaths
|
|
21
31
|
|
|
22
|
-
| Subpath |
|
|
23
|
-
|
|
24
|
-
| `vertz/server` | `@vertz/server` |
|
|
25
|
-
| `vertz/schema` | `@vertz/schema` |
|
|
26
|
-
| `vertz/db` | `@vertz/db` |
|
|
27
|
-
| `vertz/testing` | `@vertz/testing` |
|
|
28
|
-
| `vertz/ui` | `@vertz/ui` |
|
|
29
|
-
| `vertz/ui-
|
|
30
|
-
| `vertz/
|
|
31
|
-
|
|
32
|
+
| Subpath | Package |
|
|
33
|
+
|---------|---------|
|
|
34
|
+
| `vertz/server` | `@vertz/server` |
|
|
35
|
+
| `vertz/schema` | `@vertz/schema` |
|
|
36
|
+
| `vertz/db` | `@vertz/db` |
|
|
37
|
+
| `vertz/testing` | `@vertz/testing` |
|
|
38
|
+
| `vertz/ui` | `@vertz/ui` |
|
|
39
|
+
| `vertz/ui-server` | `@vertz/ui-server` |
|
|
40
|
+
| `vertz/ui-compiler` | `@vertz/ui-compiler` |
|
|
41
|
+
|
|
42
|
+
## Documentation
|
|
43
|
+
|
|
44
|
+
Full guides, API reference, and examples at **[vertz.dev](https://vertz.dev)** (coming soon).
|
|
45
|
+
|
|
46
|
+
- [GitHub](https://github.com/vertz-dev/vertz) — source code and issues
|
|
47
|
+
- [Manifesto](https://github.com/vertz-dev/vertz/blob/main/MANIFESTO.md) — what we believe and why
|
|
48
|
+
- [Vision](https://github.com/vertz-dev/vertz/blob/main/VISION.md) — the 8 principles behind every decision
|
|
32
49
|
|
|
33
50
|
## License
|
|
34
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vertz",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The first TypeScript stack built for LLMs",
|
|
@@ -58,6 +58,10 @@
|
|
|
58
58
|
"./ui-primitives": {
|
|
59
59
|
"import": "./src/ui-primitives.ts",
|
|
60
60
|
"types": "./src/ui-primitives.ts"
|
|
61
|
+
},
|
|
62
|
+
"./ui-server": {
|
|
63
|
+
"import": "./src/ui-server.ts",
|
|
64
|
+
"types": "./src/ui-server.ts"
|
|
61
65
|
}
|
|
62
66
|
},
|
|
63
67
|
"scripts": {
|
|
@@ -65,17 +69,18 @@
|
|
|
65
69
|
"build": "echo 'meta-package: no build needed'"
|
|
66
70
|
},
|
|
67
71
|
"dependencies": {
|
|
68
|
-
"@vertz/server": "^0.2.
|
|
69
|
-
"@vertz/schema": "^0.2.
|
|
70
|
-
"@vertz/db": "^0.2.
|
|
71
|
-
"@vertz/testing": "^0.2.
|
|
72
|
-
"@vertz/ui": "^0.2.
|
|
73
|
-
"@vertz/ui-compiler": "^0.2.
|
|
74
|
-
"@vertz/fetch": "^0.2.
|
|
75
|
-
"@vertz/errors": "^0.2.
|
|
76
|
-
"@vertz/cloudflare": "^0.2.
|
|
77
|
-
"@vertz/tui": "^0.2.
|
|
78
|
-
"@vertz/ui-primitives": "^0.2.
|
|
72
|
+
"@vertz/server": "^0.2.12",
|
|
73
|
+
"@vertz/schema": "^0.2.12",
|
|
74
|
+
"@vertz/db": "^0.2.12",
|
|
75
|
+
"@vertz/testing": "^0.2.12",
|
|
76
|
+
"@vertz/ui": "^0.2.12",
|
|
77
|
+
"@vertz/ui-compiler": "^0.2.12",
|
|
78
|
+
"@vertz/fetch": "^0.2.12",
|
|
79
|
+
"@vertz/errors": "^0.2.12",
|
|
80
|
+
"@vertz/cloudflare": "^0.2.12",
|
|
81
|
+
"@vertz/tui": "^0.2.12",
|
|
82
|
+
"@vertz/ui-primitives": "^0.2.12",
|
|
83
|
+
"@vertz/ui-server": "^0.2.12"
|
|
79
84
|
},
|
|
80
85
|
"devDependencies": {}
|
|
81
86
|
}
|
package/src/ui-server.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@vertz/ui-server';
|