system-monitoring
Advanced tools
Comparing version 0.0.7 to 0.0.8
@@ -5,2 +5,9 @@ # Changelog | ||
### 0.0.8 (2024-09-14) | ||
### Bug Fixes | ||
* build types ([f5865b8](https://github.com/miladezzat/system-monitoring/commit/f5865b8dc71e30a9f8217fa4d5f04c3bd63f1804)) | ||
### 0.0.7 (2024-09-14) | ||
@@ -7,0 +14,0 @@ |
@@ -91,1 +91,2 @@ "use strict"; | ||
exports.getCpuInfo = getCpuInfo; | ||
//# sourceMappingURL=cpuUsage.js.map |
@@ -54,1 +54,2 @@ "use strict"; | ||
exports.parseDiskUsage = parseDiskUsage; | ||
//# sourceMappingURL=diskUsage.js.map |
@@ -49,1 +49,2 @@ "use strict"; | ||
exports.createErrorTrackingMiddleware = createErrorTrackingMiddleware; | ||
//# sourceMappingURL=errorTrackingMiddleware.js.map |
@@ -29,1 +29,2 @@ "use strict"; | ||
__exportStar(require("./systemMonitor"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -40,1 +40,2 @@ "use strict"; | ||
exports.getLogs = getLogs; | ||
//# sourceMappingURL=logs.js.map |
@@ -34,1 +34,2 @@ "use strict"; | ||
exports.getMemoryUsage = getMemoryUsage; | ||
//# sourceMappingURL=memoryUsage.js.map |
@@ -27,1 +27,2 @@ "use strict"; | ||
exports.getNetworkInfo = getNetworkInfo; | ||
//# sourceMappingURL=networkInfo.js.map |
@@ -29,1 +29,2 @@ "use strict"; | ||
exports.getProcessInfo = getProcessInfo; | ||
//# sourceMappingURL=processInfo.js.map |
@@ -65,1 +65,2 @@ "use strict"; | ||
exports.default = exports.systemMonitor; | ||
//# sourceMappingURL=systemMonitor.js.map |
@@ -59,1 +59,2 @@ "use strict"; | ||
exports.getTemperature = getTemperature; | ||
//# sourceMappingURL=temperature.js.map |
@@ -21,1 +21,2 @@ "use strict"; | ||
exports.trackRequestResponseTime = trackRequestResponseTime; | ||
//# sourceMappingURL=trackRequestResponseTime.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -27,1 +27,2 @@ "use strict"; | ||
exports.getSystemUptime = getSystemUptime; | ||
//# sourceMappingURL=uptime.js.map |
{ | ||
"name": "system-monitoring", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "A zero-dependency server monitor package", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -9,9 +9,11 @@ { | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"skipLibCheck": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"types": ["jest", "node"] // Add jest here | ||
"declaration": true, // Ensure .d.ts files are generated | ||
"declarationMap": true, // Optional: for better debugging of type definitions | ||
"sourceMap": true // Optional: for debugging of JavaScript files | ||
}, | ||
"include": ["src/**/*", "tests/**/*"], | ||
"exclude": ["node_modules"] | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules", "**/*.test.ts"] // Exclude test files from type checking | ||
} | ||
83229
75
1235