@pikku/fetch 0.9.1 → 0.10.0

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pikku/fetch
2
2
 
3
+ ## 0.10.0
4
+
5
+ This release includes significant improvements across the framework including tree-shaking support, middleware/permission factories, enhanced CLI functionality, improved TypeScript type safety, and comprehensive test strategies.
6
+
7
+ For complete details, see https://pikku.dev/changelogs/0_10_0.md
8
+
9
+ ## 0.9.2
10
+
11
+ ### Patch Changes
12
+
13
+ - a5905a9: chore: updating all dependencies
14
+
3
15
  ## 0.9.1
4
16
 
5
17
  ### Patch Changes
@@ -1 +1 @@
1
- {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.8.3"}
1
+ {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.9.3"}
@@ -1 +1 @@
1
- {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.8.3"}
1
+ {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/fetch",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,7 +24,7 @@
24
24
  "test:coverage": "bash run-tests.sh --coverage"
25
25
  },
26
26
  "devDependencies": {
27
- "typescript": "^5.6"
27
+ "typescript": "^5.9"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=18"
package/run-tests.sh CHANGED
@@ -46,7 +46,7 @@ if [ "$watch_mode" = true ]; then
46
46
  fi
47
47
 
48
48
  if [ "$coverage_mode" = true ]; then
49
- node_cmd="$node_cmd --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info"
49
+ node_cmd="$node_cmd --test-coverage-include=\"src/**/*.{ts,js}\" --test-coverage-exclude=\"**/dist/**\" --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info"
50
50
  fi
51
51
 
52
52
  # Execute the node command with the expanded list of files