@feasibleone/blong-gogo 1.7.0 → 1.7.1

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.1](https://github.com/feasibleone/blong/compare/blong-gogo-v1.7.0...blong-gogo-v1.7.1) (2026-03-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update fastify version to 5.8.1 and adjust exports path in package.json ([b2a7078](https://github.com/feasibleone/blong/commit/b2a7078db1d5eafd36f8a64ce98a30210e0a80be))
9
+
3
10
  ## [1.7.0](https://github.com/feasibleone/blong/compare/blong-gogo-v1.6.7...blong-gogo-v1.7.0) (2026-03-06)
4
11
 
5
12
 
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "ajv-formats": "^3.0.1",
25
25
  "browser-process-hrtime": "^1.0.0",
26
26
  "chokidar": "^5.0.0",
27
- "fastify": "^5.7.1",
27
+ "fastify": "^5.8.1",
28
28
  "fastify-plugin": "^5.1.0",
29
29
  "glob": "^13.0.3",
30
30
  "got": "^14.6.6",
@@ -71,7 +71,7 @@
71
71
  },
72
72
  "name": "@feasibleone/blong-gogo",
73
73
  "type": "module",
74
- "version": "1.7.0",
74
+ "version": "1.7.1",
75
75
  "scripts": {
76
76
  "build": "true",
77
77
  "ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
package/src/Watch.ts CHANGED
@@ -90,11 +90,7 @@ export default class Watch extends Internal implements IWatch {
90
90
  * @param expectedName The expected handler name based on filename
91
91
  * @returns The handler name (either explicit or derived from filename)
92
92
  */
93
- private _validateAndSetHandlerName(
94
- item: unknown,
95
- filename: string,
96
- expectedName: string,
97
- ): string {
93
+ private _validateAndSetHandlerName(item: {}, filename: string, expectedName: string): string {
98
94
  const actualName = item['name'] && item['name'] !== 'default' ? item['name'] : null;
99
95
 
100
96
  // For files defining a single handler, report error on name mismatch