@ontrails/trails 1.0.0-beta.0 → 1.0.0-beta.2
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/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +27 -0
- package/bin/trails.ts +0 -0
- package/package.json +9 -9
package/.turbo/turbo-lint.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# trails
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix workspace dependency resolution in published packages. Now using bun publish
|
|
8
|
+
which correctly replaces workspace:^ with actual version numbers.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @ontrails/core@1.0.0-beta.2
|
|
11
|
+
- @ontrails/cli@1.0.0-beta.2
|
|
12
|
+
- @ontrails/logging@1.0.0-beta.2
|
|
13
|
+
- @ontrails/warden@1.0.0-beta.2
|
|
14
|
+
- @ontrails/schema@1.0.0-beta.2
|
|
15
|
+
|
|
16
|
+
## 1.0.0-beta.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Fix two blocking bugs from real-world migration:
|
|
21
|
+
- Published packages now resolve correctly (workspace:^ instead of workspace:\*)
|
|
22
|
+
- Error forwarding works across different success types (Err no longer carries phantom T)
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @ontrails/core@1.0.0-beta.1
|
|
25
|
+
- @ontrails/cli@1.0.0-beta.1
|
|
26
|
+
- @ontrails/logging@1.0.0-beta.1
|
|
27
|
+
- @ontrails/warden@1.0.0-beta.1
|
|
28
|
+
- @ontrails/schema@1.0.0-beta.1
|
|
29
|
+
|
|
3
30
|
## 0.1.1-beta.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/bin/trails.ts
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/trails",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
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": "
|
|
18
|
-
"@ontrails/core": "
|
|
19
|
-
"@ontrails/logging": "
|
|
20
|
-
"@ontrails/schema": "
|
|
21
|
-
"@ontrails/warden": "
|
|
22
|
-
"commander": "
|
|
23
|
-
"zod": "
|
|
17
|
+
"@ontrails/cli": "^1.0.0-beta.0",
|
|
18
|
+
"@ontrails/core": "^1.0.0-beta.0",
|
|
19
|
+
"@ontrails/logging": "^1.0.0-beta.0",
|
|
20
|
+
"@ontrails/schema": "^1.0.0-beta.0",
|
|
21
|
+
"@ontrails/warden": "^1.0.0-beta.0",
|
|
22
|
+
"commander": "^14.0.3",
|
|
23
|
+
"zod": "^4.3.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@ontrails/testing": "
|
|
26
|
+
"@ontrails/testing": "^1.0.0-beta.0"
|
|
27
27
|
}
|
|
28
28
|
}
|