Skip to content

Commit

Permalink
removed lodash parameter and changed version
Browse files Browse the repository at this point in the history
  • Loading branch information
c0nst4ntin committed Sep 21, 2019
1 parent f25e73c commit cd8314c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": false,
"name": "vue-component-importer",
"version": "0.0.3",
"version": "0.0.4",
"description": "A Vue.js plugin to globally import all vue components",
"author": "Constantin Ross",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const importComponents = (_, Vue, components) => {
const importComponents = (Vue, components) => {
components.keys().forEach((fileName) => {
const componentConfig = components(fileName);
const componentName = fileName.split('/').pop().split('.')[0];
Expand Down

0 comments on commit cd8314c

Please sign in to comment.