From 128fd979db894df675e759bc72a580d739e2b1a8 Mon Sep 17 00:00:00 2001 From: "georgii.rychko" Date: Mon, 25 Jul 2016 13:06:26 +0300 Subject: [PATCH] fix(type.utils): change lodash import from "lodash/index" to "lodash" --- src/common/utils/type.utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utils/type.utils.ts b/src/common/utils/type.utils.ts index 6eba84b6..92b9cbfe 100644 --- a/src/common/utils/type.utils.ts +++ b/src/common/utils/type.utils.ts @@ -1,4 +1,4 @@ -import * as _ from 'lodash/index' +import * as _ from 'lodash' import {RenamableNode} from '../../tree.types'; export function applyNewValueToRenamable(value: RenamableNode, newValue: string): RenamableNode {