utils -> util.

This commit is contained in:
Jeremy Ashkenas
2010-12-05 17:51:52 -05:00
parent 17b5c8ac6f
commit f6be426aa0
2 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
(function() {
var ALL_SWITCHES, BANNER, CoffeeScript, DEPRECATED_SWITCHES, EventEmitter, SWITCHES, compileOptions, compileScript, compileScripts, compileStdio, exec, fs, helpers, lint, optionParser, optparse, opts, parseOptions, path, printLine, printTokens, printWarn, sources, spawn, usage, utils, version, watch, writeJs, _ref;
var ALL_SWITCHES, BANNER, CoffeeScript, DEPRECATED_SWITCHES, EventEmitter, SWITCHES, compileOptions, compileScript, compileScripts, compileStdio, exec, fs, helpers, lint, optionParser, optparse, opts, parseOptions, path, printLine, printTokens, printWarn, sources, spawn, usage, util, version, watch, writeJs, _ref;
fs = require('fs');
path = require('path');
utils = require('utils');
util = require('util');
helpers = require('./helpers');
optparse = require('./optparse');
CoffeeScript = require('./coffee-script');
@@ -186,7 +186,7 @@
if (err) {
return printLine(err.message);
} else if (opts.compile && opts.watch) {
return utils.log("compiled " + source);
return util.log("compiled " + source);
}
});
};