Skip to content

Commit

Permalink
fixed lodash import
Browse files Browse the repository at this point in the history
  • Loading branch information
hridniev committed May 3, 2024
1 parent ea85445 commit f7960c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/directive.tooltip/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import tippy from "tippy.js";
import merge from "lodash.merge";
import { merge } from "lodash-es";

import vuelessConfig from "../../vueless.config.js";

Expand Down
4 changes: 2 additions & 2 deletions src/gen.web-types/lib/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import * as chokidar from "chokidar";
import { parse } from "vue-docgen-api";
import * as fs from "fs";
import mkdirp from "mkdirp";
import _ from "lodash";
import merge from "lodash.merge";
import _ from "lodash-es";
import { merge } from "lodash-es";

export default async function build(config) {
config.componentsRoot = path.resolve(config.cwd, config.componentsRoot);
Expand Down

0 comments on commit f7960c8

Please sign in to comment.