vertz 0.2.9 → 0.2.11

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.
@@ -0,0 +1,2 @@
1
+ $ echo 'meta-package: no build needed'
2
+ meta-package: no build needed
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # vertz
2
2
 
3
+ ## 0.2.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`275e4c7`](https://github.com/vertz-dev/vertz/commit/275e4c770f55b9e75b44d90f2cb586fff3eaeede), [`5ed4c1a`](https://github.com/vertz-dev/vertz/commit/5ed4c1a4c5c9ea946e97b1636011251c6287eaf4), [`5607c59`](https://github.com/vertz-dev/vertz/commit/5607c598c1c55485222fa2da192d0e0321f8b14a), [`523bbcb`](https://github.com/vertz-dev/vertz/commit/523bbcb12c1866a8334d5dac278cb51b157a5c7b), [`5607c59`](https://github.com/vertz-dev/vertz/commit/5607c598c1c55485222fa2da192d0e0321f8b14a), [`859e3da`](https://github.com/vertz-dev/vertz/commit/859e3dae660629d5d4f1e13c305c9201ee1d738d)]:
8
+ - @vertz/ui-compiler@0.2.11
9
+ - @vertz/ui@0.2.11
10
+ - @vertz/cloudflare@0.2.11
11
+ - @vertz/db@0.2.11
12
+ - @vertz/errors@0.2.11
13
+ - @vertz/fetch@0.2.11
14
+ - @vertz/schema@0.2.11
15
+ - @vertz/server@0.2.11
16
+ - @vertz/testing@0.2.11
17
+ - @vertz/tui@0.2.11
18
+ - @vertz/ui-primitives@0.2.11
19
+
3
20
  ## 0.2.8
4
21
 
5
22
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { describe, expect, it } from 'vitest';
1
+ import { describe, expect, it } from 'bun:test';
2
2
 
3
3
  /**
4
4
  * Tests that each subpath export from the `vertz` meta-package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vertz",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "The first TypeScript stack built for LLMs",
@@ -61,24 +61,21 @@
61
61
  }
62
62
  },
63
63
  "scripts": {
64
- "test": "vitest run",
65
- "test:watch": "vitest",
64
+ "test": "bun test",
66
65
  "build": "echo 'meta-package: no build needed'"
67
66
  },
68
67
  "dependencies": {
69
- "@vertz/server": "workspace:^",
70
- "@vertz/schema": "workspace:^",
71
- "@vertz/db": "workspace:^",
72
- "@vertz/testing": "workspace:^",
73
- "@vertz/ui": "workspace:^",
74
- "@vertz/ui-compiler": "workspace:^",
75
- "@vertz/fetch": "workspace:^",
76
- "@vertz/errors": "workspace:^",
77
- "@vertz/cloudflare": "workspace:^",
78
- "@vertz/tui": "workspace:^",
79
- "@vertz/ui-primitives": "workspace:^"
68
+ "@vertz/server": "^0.2.11",
69
+ "@vertz/schema": "^0.2.11",
70
+ "@vertz/db": "^0.2.11",
71
+ "@vertz/testing": "^0.2.11",
72
+ "@vertz/ui": "^0.2.11",
73
+ "@vertz/ui-compiler": "^0.2.11",
74
+ "@vertz/fetch": "^0.2.11",
75
+ "@vertz/errors": "^0.2.11",
76
+ "@vertz/cloudflare": "^0.2.11",
77
+ "@vertz/tui": "^0.2.11",
78
+ "@vertz/ui-primitives": "^0.2.11"
80
79
  },
81
- "devDependencies": {
82
- "vitest": "^4.0.18"
83
- }
80
+ "devDependencies": {}
84
81
  }