Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 71af841

Browse files
committed
update package
1 parent decbfd8 commit 71af841

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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",

src/backends/activity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ BaseActivity.methods.createActivity = function() {
5858

5959
// User specific proto functions (with decent defaults)
6060
BaseActivity.methods.getStreamBackend = function() {
61-
var stream = require('../GetStreamNode.js');
61+
var stream = require('../index.js');
6262
return new stream.BaseBackend();
6363
};
6464

src/backends/mongoose.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var BaseActivity = require('./activity.js');
22
var util = require("util");
33
var mongoose = require('mongoose');
4-
var stream = require('../GetStreamNode.js');
4+
var stream = require('../index.js');
55

66
function Backend() {}
77

File renamed without changes.

test/backends/mongoose.mocha.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var should = require('should');
33
var StreamMongoose = require('../../src/backends/mongoose.js');
44
var mongoose = require('mongoose');
55
var Schema = mongoose.Schema;
6-
var stream = require('../../src/GetStreamNode.js');
6+
var stream = require('../../src/index.js');
77

88
mongoose.connect('mongodb://localhost/test');
99

0 commit comments

Comments
 (0)