We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4030e4d commit 8c718a6Copy full SHA for 8c718a6
1 file changed
packages/ionic/src/commands/config/get.ts
@@ -46,12 +46,14 @@ export class ConfigGetCommand extends Command {
46
}
47
48
sanitize(key: string, obj: any) {
49
+ const lodash = this.env.load('lodash');
50
+
51
if (typeof obj === 'object' && 'tokens' in obj) {
52
obj['tokens'] = this.scrubTokens(obj['tokens']);
53
54
55
if (key === 'tokens') {
- obj = this.scrubTokens(obj);
56
+ lodash.assign(obj, this.scrubTokens(obj));
57
58
59
0 commit comments