trickle-observe 0.2.101 → 0.2.102

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.
@@ -1046,6 +1046,25 @@ if (enabled) {
1046
1046
  fs_1.default.writeFileSync(path_1.default.join(envDir, 'environment.json'), JSON.stringify(envSnapshot, null, 2));
1047
1047
  }
1048
1048
  catch { }
1049
+ // ── Hook 0d: Memory profiling ──
1050
+ try {
1051
+ const profileDir = process.env.TRICKLE_LOCAL_DIR || path_1.default.join(process.cwd(), '.trickle');
1052
+ fs_1.default.mkdirSync(profileDir, { recursive: true });
1053
+ const profileFile = path_1.default.join(profileDir, 'profile.jsonl');
1054
+ fs_1.default.writeFileSync(profileFile, '');
1055
+ const mem = process.memoryUsage();
1056
+ const startProfile = { kind: 'profile', event: 'start', rssKb: Math.round(mem.rss / 1024), heapKb: Math.round(mem.heapUsed / 1024), peakHeapKb: Math.round(mem.heapTotal / 1024), timestamp: Date.now() };
1057
+ fs_1.default.appendFileSync(profileFile, JSON.stringify(startProfile) + '\n');
1058
+ process.on('exit', () => {
1059
+ try {
1060
+ const endMem = process.memoryUsage();
1061
+ const endProfile = { kind: 'profile', event: 'end', rssKb: Math.round(endMem.rss / 1024), heapKb: Math.round(endMem.heapUsed / 1024), peakHeapKb: Math.round(endMem.heapTotal / 1024), timestamp: Date.now() };
1062
+ fs_1.default.appendFileSync(profileFile, JSON.stringify(endProfile) + '\n');
1063
+ }
1064
+ catch { }
1065
+ });
1066
+ }
1067
+ catch { }
1049
1068
  // ── Hook 1: Module._compile — transform source to wrap function declarations ──
1050
1069
  // This catches ALL functions including entry file and non-exported helpers.
1051
1070
  M.prototype._compile = function hookedCompile(content, filename) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trickle-observe",
3
- "version": "0.2.101",
3
+ "version": "0.2.102",
4
4
  "description": "Runtime type observability for JavaScript applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1031,6 +1031,23 @@ if (enabled) {
1031
1031
  fs.writeFileSync(path.join(envDir, 'environment.json'), JSON.stringify(envSnapshot, null, 2));
1032
1032
  } catch {}
1033
1033
 
1034
+ // ── Hook 0d: Memory profiling ──
1035
+ try {
1036
+ const profileDir = process.env.TRICKLE_LOCAL_DIR || path.join(process.cwd(), '.trickle');
1037
+ fs.mkdirSync(profileDir, { recursive: true });
1038
+ const profileFile = path.join(profileDir, 'profile.jsonl');
1039
+ fs.writeFileSync(profileFile, '');
1040
+ const mem = process.memoryUsage();
1041
+ const startProfile = { kind: 'profile', event: 'start', rssKb: Math.round(mem.rss / 1024), heapKb: Math.round(mem.heapUsed / 1024), peakHeapKb: Math.round(mem.heapTotal / 1024), timestamp: Date.now() };
1042
+ fs.appendFileSync(profileFile, JSON.stringify(startProfile) + '\n');
1043
+ process.on('exit', () => {
1044
+ try {
1045
+ const endMem = process.memoryUsage();
1046
+ const endProfile = { kind: 'profile', event: 'end', rssKb: Math.round(endMem.rss / 1024), heapKb: Math.round(endMem.heapUsed / 1024), peakHeapKb: Math.round(endMem.heapTotal / 1024), timestamp: Date.now() };
1047
+ fs.appendFileSync(profileFile, JSON.stringify(endProfile) + '\n');
1048
+ } catch {}
1049
+ });
1050
+ } catch {}
1034
1051
 
1035
1052
  // ── Hook 1: Module._compile — transform source to wrap function declarations ──
1036
1053
  // This catches ALL functions including entry file and non-exported helpers.