@ontrails/library 1.0.0-beta.24 → 1.0.0-beta.30
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 +44 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @ontrails/library
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.30
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ontrails/core@1.0.0-beta.30
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.29
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @ontrails/core@1.0.0-beta.29
|
|
14
|
+
|
|
15
|
+
## 1.0.0-beta.28
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @ontrails/core@1.0.0-beta.28
|
|
20
|
+
|
|
21
|
+
## 1.0.0-beta.27
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- @ontrails/core@1.0.0-beta.27
|
|
26
|
+
|
|
27
|
+
## 1.0.0-beta.26
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [1307568]
|
|
32
|
+
- Updated dependencies [371d19e]
|
|
33
|
+
- @ontrails/core@1.0.0-beta.26
|
|
34
|
+
|
|
35
|
+
## 1.0.0-beta.25
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 8097663: Project typed layer inputs through the library surface and generated packages. The runtime now validates the combined public input, routes layer-owned fields into per-layer input slots, and generated packages share one held client across root and result subpaths while avoiding Bun-only ambient type assumptions in their emitted tsconfig.
|
|
40
|
+
- d4c8600: Make the library surface package publishable so generated Trails libraries can depend on the shared runtime-backed surface outside the monorepo.
|
|
41
|
+
- Updated dependencies [c36aca9]
|
|
42
|
+
- Updated dependencies [3befcf1]
|
|
43
|
+
- Updated dependencies [a4f9cf6]
|
|
44
|
+
- Updated dependencies [9bcf34e]
|
|
45
|
+
- @ontrails/core@1.0.0-beta.25
|
|
46
|
+
|
|
3
47
|
## 1.0.0-beta.24
|
|
4
48
|
|
|
5
49
|
Initial prerelease changelog for the library surface package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/library",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.30",
|
|
4
4
|
"files": [
|
|
5
5
|
"src/**/*.ts",
|
|
6
6
|
"!src/**/__tests__/**",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@ontrails/core": "^1.0.0-beta.
|
|
25
|
+
"@ontrails/core": "^1.0.0-beta.30"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@ontrails/testing": "^1.0.0-beta.
|
|
28
|
+
"@ontrails/testing": "^1.0.0-beta.30"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"zod": "^4.3.5"
|