Skip to content

Commit

Permalink
upgraded default version of node.js to 0.6.17
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismatthieu committed May 8, 2012
1 parent b5fb4d4 commit 4d0f57d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/app.js
Expand Up @@ -243,7 +243,7 @@ module.exports = {
fs.writeFileSync(folder + '/.gitignore', rcfile + "\n");

var defaultCode = "var http = require('http');\n" + "http.createServer(function (req, res) {\n" + " res.writeHead(200, {'Content-Type': 'text/plain'});\n" + " res.end('Hello World\\nApp (" + appname + ") is running on Node.JS ' + process.version);\n" + "}).listen(process.env['app_port'] || 3000);\n";
var packageJSON= '{\n "name":"' + appname + '",\n "node":"0.6.12",\n "author":"' + config.username + '"\n}';
var packageJSON= '{\n "name":"' + appname + '",\n "node":"0.6.17",\n "author":"' + config.username + '"\n}';
fs.writeFileSync(folder + '/' + data.start, defaultCode);
log.info('writing the package.json file');
fs.writeFileSync(folder + '/package.json', packageJSON);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "nodester-cli",
"description": "A CLI tool to allow interaction with the http://nodester.com/ platform.",
"version": "0.2.48",
"version": "0.2.49",
"homepage": "http://nodester.com/",
"repository": "git://github.com/nodester/nodester-cli.git",
"author": "Daniel Bartlett <dan@f-box.org> (http://danb-uk.net/)",
Expand Down

0 comments on commit 4d0f57d

Please sign in to comment.