Optimize logdash usage.

This commit is contained in:
Paulo Gustavo Veiga 2021-12-19 19:11:04 -08:00
parent 98c4da2b8d
commit 4c48c55ec1
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { merge } from 'lodash'; import merge from 'lodash/merge';
class Options { class Options {
setOptions(...args) { setOptions(...args) {

View File

@ -16,7 +16,7 @@
* limitations under the License. * limitations under the License.
*/ */
import { $assert, $defined } from '@wisemapping/core-js'; import { $assert, $defined } from '@wisemapping/core-js';
import { cloneDeep } from 'lodash'; import cloneDeep from 'lodash/cloneDeep';
import INodeModel from './INodeModel'; import INodeModel from './INodeModel';
import TopicFeature from '../TopicFeature'; import TopicFeature from '../TopicFeature';

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import { merge } from 'lodash'; import merge from 'lodash/merge';
import Events from '../Events'; import Events from '../Events';
const defaultOptions = { const defaultOptions = {