@fragno-dev/node 0.0.6 → 0.0.7
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 +2 -2
- package/.turbo/turbo-test.log +17 -0
- package/CHANGELOG.md +8 -0
- package/package.json +9 -4
- package/vitest.config.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
$ tsdown
|
|
2
|
-
[34mℹ[39m tsdown [2mv0.15.
|
|
2
|
+
[34mℹ[39m tsdown [2mv0.15.9[22m powered by rolldown [2mv1.0.0-beta.44[22m
|
|
3
3
|
[34mℹ[39m Using tsdown config: [4m/home/runner/work/fragno/fragno/packages/fragno-node/tsdown.config.ts[24m
|
|
4
4
|
[34mℹ[39m entry: [34mfragno-node.ts[39m
|
|
5
5
|
[34mℹ[39m target: [34mnode20.0.0[39m
|
|
@@ -10,4 +10,4 @@ $ tsdown
|
|
|
10
10
|
[34mℹ[39m [2mdist/[22mfragno-node.d.ts.map [2m0.20 kB[22m [2m│ gzip: 0.14 kB[22m
|
|
11
11
|
[34mℹ[39m [2mdist/[22m[32m[1mfragno-node.d.ts[22m[39m [2m1.40 kB[22m [2m│ gzip: 0.50 kB[22m
|
|
12
12
|
[34mℹ[39m 4 files, total: 4.64 kB
|
|
13
|
-
[32m✔[39m Build complete in [
|
|
13
|
+
[32m✔[39m Build complete in [32m9340ms[39m
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$ vitest run
|
|
2
|
+
|
|
3
|
+
[1m[46m RUN [49m[22m [36mv3.2.4 [39m[90m/home/runner/work/fragno/fragno/packages/fragno-node[39m
|
|
4
|
+
[2mCoverage enabled with [22m[33mistanbul[39m
|
|
5
|
+
|
|
6
|
+
[32m✓[39m node-stream.test.ts [2m([22m[2m1 test[22m[2m)[22m[33m 458[2mms[22m[39m
|
|
7
|
+
[33m[2m✓[22m[39m Node.js Streaming[2m > [22mshould fetch data from the GET /stream route [33m 407[2mms[22m[39m
|
|
8
|
+
[32m✓[39m fragno-node-express.test.ts [2m([22m[2m2 tests[22m[2m)[22m[33m 477[2mms[22m[39m
|
|
9
|
+
[33m[2m✓[22m[39m Fragno Express integration[2m > [22mshould fetch data from the GET /users route [33m 401[2mms[22m[39m
|
|
10
|
+
[32m✓[39m fragno-node-http.test.ts [2m([22m[2m2 tests[22m[2m)[22m[33m 491[2mms[22m[39m
|
|
11
|
+
[33m[2m✓[22m[39m Fragno Node.js integration[2m > [22mshould fetch data from the GET /users route [33m 433[2mms[22m[39m
|
|
12
|
+
|
|
13
|
+
[2m Test Files [22m [1m[32m3 passed[39m[22m[90m (3)[39m
|
|
14
|
+
[2m Tests [22m [1m[32m5 passed[39m[22m[90m (5)[39m
|
|
15
|
+
[2m Start at [22m 14:42:27
|
|
16
|
+
[2m Duration [22m 3.45s[2m (transform 1.09s, setup 0ms, collect 3.77s, tests 1.43s, environment 1ms, prepare 1.24s)[22m
|
|
17
|
+
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fragno-dev/node",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"bun": "./fragno-node.ts",
|
|
@@ -14,20 +14,25 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsdown",
|
|
16
16
|
"build:watch": "tsdown --watch",
|
|
17
|
-
"types:check": "tsc --noEmit"
|
|
17
|
+
"types:check": "tsc --noEmit",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest --watch"
|
|
18
20
|
},
|
|
19
21
|
"peerDependencies": {
|
|
20
|
-
"@fragno-dev/core": "0.0.
|
|
22
|
+
"@fragno-dev/core": "0.0.7"
|
|
21
23
|
},
|
|
22
24
|
"engines": {
|
|
23
25
|
"node": "^20.0.0 || >=22.0.0"
|
|
24
26
|
},
|
|
25
27
|
"devDependencies": {
|
|
26
|
-
"@fragno-dev/core": "0.0.
|
|
28
|
+
"@fragno-dev/core": "0.0.7",
|
|
27
29
|
"@fragno-private/typescript-config": "0.0.1",
|
|
30
|
+
"@fragno-private/vitest-config": "0.0.0",
|
|
28
31
|
"@types/node": "^22",
|
|
29
32
|
"@types/express": "^5.0.3",
|
|
33
|
+
"@vitest/coverage-istanbul": "^3.2.4",
|
|
30
34
|
"express": "^5.1.0",
|
|
35
|
+
"vitest": "^3.2.4",
|
|
31
36
|
"zod": "^4.0.5"
|
|
32
37
|
},
|
|
33
38
|
"dependencies": {
|
package/vitest.config.ts
CHANGED