Skip to content

Commit

Permalink
Updated default node version to 0.8.24.
Browse files Browse the repository at this point in the history
  • Loading branch information
InconceivableDuck committed Aug 19, 2013
1 parent 95fb95f commit 7c09486
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ a package.json file with all required dependencies and can be easily ported to y

--version print demeteorizer version and exit
--output, -o output directory for converted app. Defaults to ./.demeteorized.
--node_version, -n version of node to override minimum node version variable. Defaults to 0.8.18.
--node_version, -n version of node to override minimum node version variable. Defaults to 0.8.24.

## Examples
Convert the Meteor app in the current directory and output to ./.demeteorized
Expand Down
4 changes: 2 additions & 2 deletions cli/demeteorizer.js
Expand Up @@ -5,7 +5,7 @@ var program = require('commander'),
program
.version('0.2.3')
.option('-o, --output <path>', 'Output folder for converted application. Defaults to ./.demeteorized')
.option('-n, --node_version <version>', 'The required version of node. Defaults to 0.8.18')
.option('-n, --node_version <version>', 'The required version of node. Defaults to 0.8.24')
.parse(process.argv);

var output = program.output;
Expand All @@ -18,7 +18,7 @@ if(!output) {
}

if(!node_version) {
node_version = 'v0.8.18';
node_version = 'v0.8.24';
}

if(node_version.indexOf('v') !== 0) {
Expand Down

0 comments on commit 7c09486

Please sign in to comment.