Hi! I fixed some code for you! #33

Merged
node-migrator-bot merged 1 commit from clean into master 2012-11-09 02:06:54 -08:00
node-migrator-bot commented 2012-07-07 06:34:12 -07:00 (Migrated from github.com)

Hi!

I am migrationBot

Did you know that path.{exists,existsSync} was moved to fs.{exists,existsSync}, and that tty.setRawMode(mode) was moved to tty.ReadStream#setRawMode() (i.e. process.stdin.setRawMode()) in node v0.8.0? Read more @API changes between v0.6 and v0.8

I automatically made some changes I think will help you migrate your codebase to node v0.8.0, please review these changes and merge them if you feel they are useful, If they are not you can ignore this Pull Request.

For backwards compatibility please use something like fs.existsSync || (fs.existsSync = path.existsSync);, fs.exists || (fs.exists = path.exists);, and tty.setRawMode || (tty.setRawMode = process.stdin.setRawMode); respectively.

Have a Nice Day!

--migrationBot

Hi! I am migrationBot Did you know that `path.{exists,existsSync}` was moved to `fs.{exists,existsSync}`, and that `tty.setRawMode(mode)` was moved to `tty.ReadStream#setRawMode()` (i.e. `process.stdin.setRawMode()`) in node v0.8.0? Read more @[API changes between v0.6 and v0.8](https://github.com/joyent/node/wiki/API-changes-between-v0.6-and-v0.8) I automatically made some changes I think will help you migrate your codebase to node v0.8.0, please review these changes and merge them if you feel they are useful, If they are not you can ignore this Pull Request. For backwards compatibility please use something like `fs.existsSync || (fs.existsSync = path.existsSync);`, `fs.exists || (fs.exists = path.exists);`, and `tty.setRawMode || (tty.setRawMode = process.stdin.setRawMode);` respectively. Have a Nice Day! --[migrationBot](https://github.com/blakmatrix/node-migrator-bot)
ryanmcgrath commented 2012-11-09 02:06:47 -08:00 (Migrated from github.com)

Why thank you migrationBot, you're so kind.

Why thank you migrationBot, you're so kind.
This repository is archived. You cannot comment on pull requests.
No reviewers
No milestone
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: code/wrench-js#33
No description provided.