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.
lodash.omit
1 parent 229a257 commit d5e1017Copy full SHA for d5e1017
package.json
@@ -24,7 +24,6 @@
24
],
25
"dependencies": {
26
"js-yaml": "^3.9.1",
27
- "lodash.omit": "^4.5.0",
28
"needlepoint": "^1.0.5",
29
"style-loader": "^0.18.2"
30
},
src/configManager.js
@@ -1,6 +1,8 @@
1
import { join, relative } from "path";
2
3
-import omit from "lodash.omit";
+/* eslint-disable import/no-extraneous-dependencies */
4
+/* covered by nuxt */
5
+import _ from "lodash";
6
7
import CmsConfigFile from "./utils/cms.config.file";
8
@@ -31,7 +33,7 @@ class ConfigManager {
31
33
...moduleOptions
32
34
};
35
- const options = omit(
36
+ const options = _.omit(
37
{
38
...DEFAULTS,
39
...this._userOptions
0 commit comments