We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec2d99 commit cf71d17Copy full SHA for cf71d17
lib/output/formatters/index.js
@@ -1,4 +1,3 @@
1
-const _ = require('lodash');
2
const { Formatter } = require('../index');
3
4
const EMPTY_FORMATTER = new Formatter();
lib/output/index.js
@@ -11,7 +11,7 @@ class Formatter {
11
if (!keys || !_.keys(this.styles)) {
12
return source;
13
}
14
- const obj = { ...source };
+ const obj = Object.assign({}, source);
15
keys.forEach((key) => {
16
const prop = obj[key];
17
obj[key] = this._applyStyles(key, prop);
package.json
@@ -1,6 +1,6 @@
{
"name": "codefresh",
- "version": "0.8.101",
+ "version": "0.8.102",
"description": "Codefresh command line utility",
5
"main": "index.js",
6
"preferGlobal": true,
0 commit comments