create-mastra 1.8.2-alpha.1 → 1.9.0-alpha.3
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 +4 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -14393,12 +14393,12 @@ var PosthogAnalytics = class {
|
|
|
14393
14393
|
}
|
|
14394
14394
|
}
|
|
14395
14395
|
// Ensure PostHog client is shutdown properly
|
|
14396
|
-
async shutdown() {
|
|
14396
|
+
async shutdown(timeoutMs) {
|
|
14397
14397
|
if (!this.client) {
|
|
14398
14398
|
return;
|
|
14399
14399
|
}
|
|
14400
14400
|
try {
|
|
14401
|
-
await this.client.shutdown();
|
|
14401
|
+
await this.client.shutdown(timeoutMs);
|
|
14402
14402
|
} catch {
|
|
14403
14403
|
}
|
|
14404
14404
|
}
|
|
@@ -14543,7 +14543,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
14543
14543
|
};
|
|
14544
14544
|
|
|
14545
14545
|
var package_default = {
|
|
14546
|
-
version: "1.
|
|
14546
|
+
version: "1.9.0-alpha.3"};
|
|
14547
14547
|
var logger = createLogger(false);
|
|
14548
14548
|
function createLogger(debug = false) {
|
|
14549
14549
|
return new PinoLogger({
|