@boost/internal
Advanced tools
Comparing version 1.0.3 to 1.1.0
@@ -6,2 +6,18 @@ # Change Log | ||
## 1.1.0 - 2020-02-04 | ||
#### 🚀 Updates | ||
- Add more internal debugging. (#74) ([70c42c8](https://github.com/milesj/boost/commit/70c42c8)), closes [#74](https://github.com/milesj/boost/issues/74) | ||
#### 🛠 Internals | ||
- Rename color helper names. ([29e0791](https://github.com/milesj/boost/commit/29e0791)) | ||
**Note:** Version bump only for package @boost/internal | ||
### 1.0.3 - 2020-01-25 | ||
@@ -8,0 +24,0 @@ |
import chalk from 'chalk'; | ||
declare const _default: { | ||
fail: chalk.Chalk; | ||
mute: chalk.Chalk; | ||
pass: chalk.Chalk; | ||
filePath: chalk.Chalk; | ||
moduleName: chalk.Chalk; | ||
mute: chalk.Chalk; | ||
pass: chalk.Chalk; | ||
pluginName: chalk.Chalk; | ||
toolName: chalk.Chalk; | ||
pluginType: chalk.Chalk; | ||
projectName: chalk.Chalk; | ||
}; | ||
export default _default; | ||
//# sourceMappingURL=color.d.ts.map |
"use strict"; | ||
/* eslint-disable sort-keys */ | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
@@ -8,9 +9,11 @@ return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
exports.default = { | ||
// States | ||
fail: chalk_1.default.red, | ||
mute: chalk_1.default.gray, | ||
pass: chalk_1.default.green, | ||
// Types | ||
filePath: chalk_1.default.cyan, | ||
moduleName: chalk_1.default.yellow, | ||
mute: chalk_1.default.gray, | ||
pass: chalk_1.default.green, | ||
pluginName: chalk_1.default.magenta, | ||
toolName: chalk_1.default.blue, | ||
pluginType: chalk_1.default.magenta, | ||
projectName: chalk_1.default.blue, | ||
}; |
@@ -7,2 +7,7 @@ "use strict"; | ||
const debug_1 = __importDefault(require("debug")); | ||
debug_1.default.formatters.S = function sentenceCase(value) { | ||
return String(value) | ||
.replace(/[A-Z]/gu, match => ` ${match.toLocaleLowerCase()}`) | ||
.trim(); | ||
}; | ||
function createInternalDebugger(namespace) { | ||
@@ -9,0 +14,0 @@ return debug_1.default(`boost:${namespace}`); |
{ | ||
"name": "@boost/internal", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"description": "Boost internals.", | ||
@@ -28,3 +28,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "415de2e011ad6252dde167d5e4c8a93d3719ea83" | ||
"gitHead": "3c0a3aabc8de08093f34daaa4fbad3b42a7609db" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
12869
167