Skip to content

Commit

Permalink
refactor: fix typo in debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Jul 19, 2018
1 parent 13f3be4 commit bdf33a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/glob-assets.js
Expand Up @@ -14,7 +14,7 @@ module.exports = async ({cwd}, assets) =>
// Skip solo negated pattern (avoid to include every non js file with `!**/*.js`)
if (glob.length <= 1 && glob[0].startsWith('!')) {
debug(
'skipping the negated glob %o as its alone in its group and would retrieve a large amount of files ',
'skipping the negated glob %o as its alone in its group and would retrieve a large amount of files',
glob[0]
);
return [];
Expand Down

0 comments on commit bdf33a2

Please sign in to comment.