@ontrails/schema 1.0.0-beta.1 → 1.0.0-beta.3

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.
@@ -1,3 +1,3 @@
1
1
  $ oxlint ./src
2
2
  Found 0 warnings and 0 errors.
3
- Finished in 42ms on 10 files with 93 rules using 24 threads.
3
+ Finished in 30ms on 10 files with 93 rules using 24 threads.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @ontrails/schema
2
2
 
3
+ ## 1.0.0-beta.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @ontrails/core@1.0.0-beta.3
9
+
10
+ ## 1.0.0-beta.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Fix workspace dependency resolution in published packages. Now using bun publish
15
+ which correctly replaces workspace:^ with actual version numbers.
16
+ - Updated dependencies
17
+ - @ontrails/core@1.0.0-beta.2
18
+
3
19
  ## 1.0.0-beta.1
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/schema",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.ts",
@@ -14,7 +14,7 @@
14
14
  "clean": "rm -rf dist *.tsbuildinfo"
15
15
  },
16
16
  "peerDependencies": {
17
- "@ontrails/core": "workspace:^",
18
- "zod": "catalog:"
17
+ "@ontrails/core": "^1.0.0-beta.0",
18
+ "zod": "^4.3.5"
19
19
  }
20
20
  }