@objectstack/runtime 1.0.2 → 1.0.5
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-build.log +22 -0
- package/CHANGELOG.md +33 -0
- package/dist/index.cjs +1586 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +629 -0
- package/dist/index.d.ts +628 -14
- package/dist/index.js +1549 -16
- package/dist/index.js.map +1 -0
- package/package.json +6 -5
- package/src/api-registry-plugin.ts +15 -3
- package/src/rest-server.ts +3 -5
- package/src/route-manager.ts +2 -1
- package/src/runtime.ts +0 -1
- package/tsconfig.json +4 -9
- package/dist/api-registry-plugin.d.ts +0 -16
- package/dist/api-registry-plugin.js +0 -42
- package/dist/app-plugin.d.ts +0 -18
- package/dist/app-plugin.js +0 -80
- package/dist/app-plugin.test.d.ts +0 -1
- package/dist/app-plugin.test.js +0 -80
- package/dist/driver-plugin.d.ts +0 -23
- package/dist/driver-plugin.js +0 -35
- package/dist/http-dispatcher.d.ts +0 -106
- package/dist/http-dispatcher.js +0 -539
- package/dist/http-dispatcher.test.d.ts +0 -1
- package/dist/http-dispatcher.test.js +0 -79
- package/dist/http-server.d.ts +0 -84
- package/dist/http-server.js +0 -125
- package/dist/middleware.d.ts +0 -111
- package/dist/middleware.js +0 -176
- package/dist/rest-server.d.ts +0 -74
- package/dist/rest-server.js +0 -518
- package/dist/route-manager.d.ts +0 -153
- package/dist/route-manager.js +0 -251
- package/dist/runtime.d.ts +0 -45
- package/dist/runtime.js +0 -50
- package/dist/runtime.test.d.ts +0 -1
- package/dist/runtime.test.js +0 -57
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
> @objectstack/runtime@1.0.5 build /home/runner/work/spec/spec/packages/runtime
|
|
3
|
+
> tsup --config ../../tsup.config.ts
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.1
|
|
8
|
+
[34mCLI[39m Using tsup config: /home/runner/work/spec/spec/tsup.config.ts
|
|
9
|
+
[34mCLI[39m Target: es2020
|
|
10
|
+
[34mCLI[39m Cleaning output folder
|
|
11
|
+
[34mESM[39m Build start
|
|
12
|
+
[34mCJS[39m Build start
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m49.07 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m111.59 KB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 86ms
|
|
16
|
+
[32mESM[39m [1mdist/index.js [22m[32m47.33 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m111.49 KB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 90ms
|
|
19
|
+
[34mDTS[39m Build start
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 10438ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m17.79 KB[39m
|
|
22
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m17.79 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @objectstack/runtime
|
|
2
2
|
|
|
3
|
+
## 1.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b1d24bd: refactor: migrate build system from tsc to tsup for faster builds
|
|
8
|
+
- Replaced `tsc` with `tsup` (using esbuild) across all packages
|
|
9
|
+
- Added shared `tsup.config.ts` in workspace root
|
|
10
|
+
- Added `tsup` as workspace dev dependency
|
|
11
|
+
- significantly improved build performance
|
|
12
|
+
- 877b864: fix: add SPA fallback to hono, fix msw context binding, improve runtime resilience, and fix client-react build types
|
|
13
|
+
- Updated dependencies [b1d24bd]
|
|
14
|
+
- @objectstack/core@1.0.5
|
|
15
|
+
- @objectstack/types@1.0.5
|
|
16
|
+
- @objectstack/spec@1.0.5
|
|
17
|
+
|
|
18
|
+
## 1.0.4
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- @objectstack/spec@1.0.4
|
|
23
|
+
- @objectstack/core@1.0.4
|
|
24
|
+
- @objectstack/types@1.0.4
|
|
25
|
+
|
|
26
|
+
## 1.0.3
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- fb2eabd: fix: resolve "process is not defined" runtime error in browser environments by adding safe environment detection and polyfills
|
|
31
|
+
- Updated dependencies [fb2eabd]
|
|
32
|
+
- @objectstack/core@1.0.3
|
|
33
|
+
- @objectstack/spec@1.0.3
|
|
34
|
+
- @objectstack/types@1.0.3
|
|
35
|
+
|
|
3
36
|
## 1.0.2
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|