Skip to content

Commit

Permalink
sys --> util (sys is deprecated)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panya committed Dec 29, 2011
1 parent 5ff38e1 commit b16a9dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
Durilka v0.1.1
Durilka v0.1.2
4 changes: 2 additions & 2 deletions lib/durilka.js
@@ -1,7 +1,7 @@
var url = require('url'),
http = require('http'),
fs = require('fs'),
sys = require('sys'),
util = require('util'),
getopts = require('./getopts.js').getopts,
opts = getopts(process.argv.slice(2, process.argv.length),
['--version', '-v',
Expand Down Expand Up @@ -158,5 +158,5 @@ function getViaFS(uri, callback) {
}

function printFile(filename) {
sys.print(fs.readFileSync(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/' + filename).toString());
util.print(fs.readFileSync(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/' + filename).toString());
}
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name" : "durilka",
"description" : "Simple tool for making data URIs from images in CSS files",
"version" : "0.1.1",
"version" : "0.1.2",
"author" : "Mikhail Korepanov <panyakor@gmail.com>",
"homepage": "http://github.com/panya/durilka",
"repository" : {
Expand All @@ -11,6 +11,6 @@
"directories" : { "lib" : "./lib" },
"main" : "./lib/durilka",
"bin" : "./bin/durilka",
"engines" : { "node" : ">=0.4.0" },
"engines" : { "node" : ">=0.6.0" },
"licenses" : [ { "type" : "MIT" } ]
}

0 comments on commit b16a9dc

Please sign in to comment.