We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac05034 commit 62dd154Copy full SHA for 62dd154
src/jsboot/gister/packman.js
@@ -117,7 +117,7 @@ if (typeof jsBoot == 'undefined')
117
var simplePull = function(glob, name) {
118
name.split('.').forEach(function(fragment) {
119
if (!(fragment in glob))
120
- throw new Error('MISSING', 'Trying to require something that doesn\'t exist');
+ throw new Error('MISSING', 'Trying to require something that doesn\'t exist: ' + name);
121
glob = glob[fragment];
122
});
123
return glob;
0 commit comments