Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Hi! I fixed some code for you! #33

Merged
merged 1 commit into from
Nov 9, 2012

Conversation

node-migrator-bot
Copy link

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

@ryanmcgrath
Copy link
Owner

Why thank you migrationBot, you're so kind.

ryanmcgrath pushed a commit that referenced this pull request Nov 9, 2012
@ryanmcgrath ryanmcgrath merged commit 5119852 into ryanmcgrath:master Nov 9, 2012
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants