Lines Matching refs:er
26 fs.readdir(dir, function (er, files) { argument
27 cb(er, files.filter(function (f) {
72 function n (er, data) { argument
73 if (er) return cb(er, data)
91 return fs.lstat(path.resolve(pkg), function (er, st) { argument
92 if (er || !st.isDirectory()) {
101 fs.lstat(pp, function (er, st) { argument
102 if (er) {
109 return fs.realpath(pp, function (er, real) { argument
110 if (er) log.warn('invalid symbolic link', pkg)
142 readJson(path.resolve(me, 'package.json'), function (er, d) { argument
143 function cb (er) { argument
144 return cb_(er, [[d && d._id, target, null, null]])
146 if (er) return cb(er)
148 er = new Error('Package must have a name field to be linked')
149 return cb(er)
153 symlink(me, target, false, true, function (er) { argument
154 if (er) return cb(er)
157 npm.commands.install(me, [], function (er) { argument
158 if (er) return cb(er)
161 build([target], true, build._noLC, true, function (er) { argument
162 if (er) return cb(er)