Skip to content

Commit

Permalink
Fix needle dependency warning typo. (#3630)
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis Wilson committed Jul 3, 2021
1 parent 3173fdd commit 1aecbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/less/src/less-node/url-file-manager.js
Expand Up @@ -17,7 +17,7 @@ UrlFileManager.prototype = Object.assign(new AbstractFileManager(), {
catch (e) { request = null; }
}
if (!request) {
reject({ type: 'File', message: 'optional dependency \'native-request\' required to import over http(s)\n' });
reject({ type: 'File', message: 'optional dependency \'needle\' required to import over http(s)\n' });
return;
}

Expand Down

0 comments on commit 1aecbb7

Please sign in to comment.