Skip to content

Commit

Permalink
refactor: change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 16, 2020
1 parent af246e4 commit 8aaf098
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Adio.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class Adio {
glob.sync(dir, {
cwd: this.config.cwd,
ignore: ignoreDirs
}).forEach(packageJsonPath => {
packages.push(path.join(this.config.cwd, packageJsonPath));
}).forEach(packageJsonDir => {
packages.push(path.join(this.config.cwd, packageJsonDir));
});
});

Expand Down

0 comments on commit 8aaf098

Please sign in to comment.