@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.
@@ -1,5 +1,5 @@
1
1
  $ tsdown
2
- ℹ tsdown v0.15.6 powered by rolldown v1.0.0-beta.41
2
+ ℹ tsdown v0.15.9 powered by rolldown v1.0.0-beta.44
3
3
  ℹ Using tsdown config: /home/runner/work/fragno/fragno/packages/fragno-node/tsdown.config.ts
4
4
  ℹ entry: fragno-node.ts
5
5
  ℹ target: node20.0.0
@@ -10,4 +10,4 @@ $ tsdown
10
10
  ℹ dist/fragno-node.d.ts.map 0.20 kB │ gzip: 0.14 kB
11
11
  ℹ dist/fragno-node.d.ts 1.40 kB │ gzip: 0.50 kB
12
12
  ℹ 4 files, total: 4.64 kB
13
- ✔ Build complete in 5147ms
13
+ ✔ Build complete in 9340ms
@@ -0,0 +1,17 @@
1
+ $ vitest run
2
+
3
+  RUN  v3.2.4 /home/runner/work/fragno/fragno/packages/fragno-node
4
+ Coverage enabled with istanbul
5
+
6
+ ✓ node-stream.test.ts (1 test) 458ms
7
+ ✓ Node.js Streaming > should fetch data from the GET /stream route  407ms
8
+ ✓ fragno-node-express.test.ts (2 tests) 477ms
9
+ ✓ Fragno Express integration > should fetch data from the GET /users route  401ms
10
+ ✓ fragno-node-http.test.ts (2 tests) 491ms
11
+ ✓ Fragno Node.js integration > should fetch data from the GET /users route  433ms
12
+
13
+  Test Files  3 passed (3)
14
+  Tests  5 passed (5)
15
+  Start at  14:42:27
16
+  Duration  3.45s (transform 1.09s, setup 0ms, collect 3.77s, tests 1.43s, environment 1ms, prepare 1.24s)
17
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fragno-dev/node
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1fa71f3]
8
+ - Updated dependencies [c1483c6]
9
+ - @fragno-dev/core@0.0.7
10
+
3
11
  ## 0.0.6
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fragno-dev/node",
3
- "version": "0.0.6",
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.6"
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.6",
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
@@ -1,3 +1,4 @@
1
1
  import { defineConfig } from "vitest/config";
2
+ import { baseConfig } from "@fragno-private/vitest-config";
2
3
 
3
- export default defineConfig({});
4
+ export default defineConfig(baseConfig);