@ontrails/trails 1.0.0-beta.0 → 1.0.0-beta.1

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 113ms on 18 files with 93 rules using 24 threads.
3
+ Finished in 39ms on 18 files with 93 rules using 24 threads.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # trails
2
2
 
3
+ ## 1.0.0-beta.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix two blocking bugs from real-world migration:
8
+ - Published packages now resolve correctly (workspace:^ instead of workspace:\*)
9
+ - Error forwarding works across different success types (Err no longer carries phantom T)
10
+ - Updated dependencies
11
+ - @ontrails/core@1.0.0-beta.1
12
+ - @ontrails/cli@1.0.0-beta.1
13
+ - @ontrails/logging@1.0.0-beta.1
14
+ - @ontrails/warden@1.0.0-beta.1
15
+ - @ontrails/schema@1.0.0-beta.1
16
+
3
17
  ## 0.1.1-beta.0
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/trails",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.1",
4
4
  "bin": {
5
5
  "trails": "./bin/trails.ts"
6
6
  },
@@ -14,15 +14,15 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@clack/prompts": "^1.1.0",
17
- "@ontrails/cli": "workspace:*",
18
- "@ontrails/core": "workspace:*",
19
- "@ontrails/logging": "workspace:*",
20
- "@ontrails/schema": "workspace:*",
21
- "@ontrails/warden": "workspace:*",
17
+ "@ontrails/cli": "workspace:^",
18
+ "@ontrails/core": "workspace:^",
19
+ "@ontrails/logging": "workspace:^",
20
+ "@ontrails/schema": "workspace:^",
21
+ "@ontrails/warden": "workspace:^",
22
22
  "commander": "catalog:",
23
23
  "zod": "catalog:"
24
24
  },
25
25
  "devDependencies": {
26
- "@ontrails/testing": "workspace:*"
26
+ "@ontrails/testing": "workspace:^"
27
27
  }
28
28
  }