@boost/log
Advanced tools
Comparing version 1.0.3 to 1.1.0
@@ -6,2 +6,14 @@ # Change Log | ||
## 1.1.0 - 2019-08-03 | ||
#### 🚀 Updates | ||
- Support the internal debugger. ([4b3a6e4](https://github.com/milesj/boost/tree/master/packages/log/commit/4b3a6e4)) | ||
**Note:** Version bump only for package @boost/log | ||
### 1.0.3 - 2019-08-01 | ||
@@ -8,0 +20,0 @@ |
@@ -1,6 +0,6 @@ | ||
import factoryDebug from 'debug'; | ||
/// <reference types="debug" /> | ||
import { LogLevel } from './types'; | ||
export declare const debug: factoryDebug.Debugger; | ||
export declare const debug: import("debug").Debugger; | ||
export declare const msg: import("@boost/translate").Translator; | ||
export declare const LOG_LEVELS: LogLevel[]; | ||
//# sourceMappingURL=constants.d.ts.map |
@@ -7,7 +7,7 @@ "use strict"; | ||
const path_1 = __importDefault(require("path")); | ||
const debug_1 = __importDefault(require("debug")); | ||
const internal_1 = require("@boost/internal"); | ||
const translate_1 = require("@boost/translate"); | ||
exports.debug = debug_1.default('boost:log'); | ||
exports.debug = internal_1.createInternalDebugger('log'); | ||
exports.msg = translate_1.createTranslator('log', path_1.default.join(__dirname, '../res')); | ||
// In order of priority! | ||
exports.LOG_LEVELS = ['log', 'trace', 'debug', 'info', 'warn', 'error']; |
{ | ||
"name": "@boost/log", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"description": "Lightweight level based logging system.", | ||
@@ -23,7 +23,7 @@ "keywords": [ | ||
"dependencies": { | ||
"@boost/translate": "^1.0.3", | ||
"chalk": "^2.4.2", | ||
"debug": "^4.1.1" | ||
"@boost/internal": "^1.0.0", | ||
"@boost/translate": "^1.1.0", | ||
"chalk": "^2.4.2" | ||
}, | ||
"gitHead": "cf50d411c778a661520be41b0ea1042b31ce900d" | ||
"gitHead": "df95147bce94ffa5bdddd011edf3d4261255f094" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12583
+ Added@boost/internal@^1.0.0
- Removeddebug@^4.1.1
Updated@boost/translate@^1.1.0