@feasibleone/blong-gogo 1.20.0 → 1.21.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 +7 -0
- package/package.json +1 -1
- package/src/Watch.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.21.0](https://github.com/feasibleone/blong/compare/blong-gogo-v1.20.0...blong-gogo-v1.21.0) (2026-05-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **blong-int-adapter:** expand mysql/mongodb/kafka integration test coverage ([#143](https://github.com/feasibleone/blong/issues/143)) ([b4bb9dd](https://github.com/feasibleone/blong/commit/b4bb9dd130ed9adcb6f4f28d57534f69b174321f))
|
|
9
|
+
|
|
3
10
|
## [1.20.0](https://github.com/feasibleone/blong/compare/blong-gogo-v1.19.1...blong-gogo-v1.20.0) (2026-05-11)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/src/Watch.ts
CHANGED
|
@@ -294,7 +294,10 @@ export default class Watch extends Internal implements IWatch {
|
|
|
294
294
|
? (await import(this.#config.enabled ? filename + '?' + Date.now() : filename))
|
|
295
295
|
.default
|
|
296
296
|
: ((await directory![filename]()) as {default: unknown}).default;
|
|
297
|
-
if (!item)
|
|
297
|
+
if (!item) {
|
|
298
|
+
this.log?.error?.('Error loading ' + filename);
|
|
299
|
+
continue;
|
|
300
|
+
}
|
|
298
301
|
const expectedName = this.#platform.basename(
|
|
299
302
|
filename,
|
|
300
303
|
this.#platform.extname(filename),
|