Skip to content

Commit

Permalink
fix(extensions): use correct option to search npm root for extensions
Browse files Browse the repository at this point in the history
no issue
- this was a readme bug in the find-plugins module, the option is *actually* dir, not modulesDir
  • Loading branch information
acburdine committed Jul 1, 2017
1 parent c5091df commit df049e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/find-extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = function findExtensions() {
keyword: 'ghost-cli-extension',
configName: 'ghost-cli',
include: localExtensions,
modulesDir: npmRoot,
dir: npmRoot,
scanAllDirs: true,
sort: true
}).map((ext) => {
Expand Down

0 comments on commit df049e0

Please sign in to comment.