repl: add 'domain' to automatic loading libs
authorRyunosuke SATO <tricknotes.rs@gmail.com>
Tue, 11 Dec 2012 10:04:34 +0000 (19:04 +0900)
committerisaacs <i@izs.me>
Wed, 26 Dec 2012 23:23:31 +0000 (15:23 -0800)
`domain` should be a member of automatic loading libs in `repl`.

Conflicts:

lib/repl.js

lib/repl.js

index 556ccd9..7363d2e 100644 (file)
@@ -69,8 +69,8 @@ module.paths = require('module')._nodeModulePaths(module.filename);
 exports.writer = util.inspect;
 
 exports._builtinLibs = ['assert', 'buffer', 'child_process', 'cluster',
-  'crypto', 'dgram', 'dns', 'events', 'fs', 'http', 'https', 'net', 'os',
-  'path', 'punycode', 'querystring', 'readline', 'repl', 'stream',
+  'crypto', 'dgram', 'dns', 'domain', 'events', 'fs', 'http', 'https', 'net',
+  'os', 'path', 'punycode', 'querystring', 'readline', 'repl', 'stream',
   'string_decoder', 'tls', 'tty', 'url', 'util', 'vm', 'zlib'];