Skip to content

Add a new resolve option resolver #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typo in rootDir option resolver
  • Loading branch information
pascalduez committed Feb 25, 2018
commit 2a4373f0ece66a1a2e29ebdd3b098553d24df74d
2 changes: 1 addition & 1 deletion src/options_resolvers/rootDir.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function rootDir(value/* , currentConfig */) {
}

if (!isAbsolute(value) || !statSync(value).isDirectory()) {
throw new Error(`Configuration 'rootDir' is not containg a valid absolute path`);
throw new Error(`Configuration 'rootDir' is not containing a valid absolute path`);
}

return value;
Expand Down