Skip to content

Commit

Permalink
switched to express 2.5.10, updated demo to use expressApi directly w…
Browse files Browse the repository at this point in the history
…ithout npm link
  • Loading branch information
outbounder committed Jun 26, 2012
1 parent a4f35d0 commit d955df3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/actions/echo.js
@@ -1,4 +1,4 @@
var Actions = require("expressApi/Actions");
var Actions = require("../../Actions");
var Token = require("../models/Token");

module.exports = Actions.extend({
Expand Down
2 changes: 1 addition & 1 deletion demo/app.js
@@ -1,7 +1,7 @@
var mode = process.env.NODE_ENV || "development";
var nconf = require('nconf').argv().env().file({ file: __dirname+'/config/'+mode+'.json' });

var app = require("expressApi");
var app = require("../index");
var Token = require("./models/Token");

app.configure(function(){
Expand Down
2 changes: 1 addition & 1 deletion demo/models/Base.js
@@ -1,4 +1,4 @@
var Backbone = require("expressApi/BackboneMongo");
var Backbone = require("../../BackboneMongo");

module.exports = Backbone.Model.extend({
initialize: function(){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"underscore" : "latest",
"backbone": "latest",
"mongojs": "latest",
"express": "latest",
"express": "2.5.10",
"connect-mongo": "latest",
"glob": "latest",
"backbone-callbacks": "latest"
Expand Down

0 comments on commit d955df3

Please sign in to comment.