This repository was archived by the owner on Feb 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " getstream-node" ,
3- "version" : " 1.0 .0" ,
3+ "version" : " 0.1 .0" ,
44 "description" : " Build newsfeeds and activity feeds on node.js using getstream.io" ,
5- "author" : " Mario Delgado <mariodel @gmail.com> (http://getstream.io/)" ,
5+ "author" : " Tommaso Barbugli <tbarbugli @gmail.com> (http://getstream.io/)" ,
66 "license" : " MIT" ,
7- "main" : " ./src/GetStreamNode .js" ,
7+ "main" : " ./src/index .js" ,
88 "dependencies" : {
99 "getstream" : " ^2.1.7" ,
1010 "mongoose" : " ^3.0.0" ,
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ BaseActivity.methods.createActivity = function() {
5858
5959// User specific proto functions (with decent defaults)
6060BaseActivity . methods . getStreamBackend = function ( ) {
61- var stream = require ( '../GetStreamNode .js' ) ;
61+ var stream = require ( '../index .js' ) ;
6262 return new stream . BaseBackend ( ) ;
6363} ;
6464
Original file line number Diff line number Diff line change 11var BaseActivity = require ( './activity.js' ) ;
22var util = require ( "util" ) ;
33var mongoose = require ( 'mongoose' ) ;
4- var stream = require ( '../GetStreamNode .js' ) ;
4+ var stream = require ( '../index .js' ) ;
55
66function Backend ( ) { }
77
File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ var should = require('should');
33var StreamMongoose = require ( '../../src/backends/mongoose.js' ) ;
44var mongoose = require ( 'mongoose' ) ;
55var Schema = mongoose . Schema ;
6- var stream = require ( '../../src/GetStreamNode .js' ) ;
6+ var stream = require ( '../../src/index .js' ) ;
77
88mongoose . connect ( 'mongodb://localhost/test' ) ;
99
You can’t perform that action at this time.
0 commit comments