Skip to content

Commit

Permalink
Fixup package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mauimauer committed Dec 3, 2013
1 parent a5940ff commit f6072fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion heroku/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"engines": {
"node": "0.10.x",
"npm": "1.3.x"
"npm": "1.2.25"
},
"scripts": {
"test": "grunt test"
Expand Down
2 changes: 1 addition & 1 deletion heroku/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ app.configure('production', function(){
console.log("Production Mode!");
console.log(path.join(__dirname, 'public'));
app.use(express.favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static('./public'));
app.set('views', __dirname + '/views');
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"engines": {
"node": "0.10.x",
"npm": "1.3.x"
"npm": "1.2.25"
},
"scripts": {
"test": "grunt test"
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ app.configure('production', function(){
console.log("Production Mode!");
console.log(path.join(__dirname, 'public'));
app.use(express.favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static('./public'));
app.set('views', __dirname + '/views');
});

Expand Down

0 comments on commit f6072fd

Please sign in to comment.