We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef730f commit 389f3b8Copy full SHA for 389f3b8
4 files changed
index.js
@@ -0,0 +1,9 @@
1
+'use strict';
2
+
3
+var writable = require('./src/writable-cdb'),
4
+ readable = require('./src/readable-cdb');
5
6
+module.exports = {
7
+ writable: writable,
8
+ readable: readable
9
+};
package.json
@@ -1,6 +1,6 @@
{
"name": "constant-db",
- "version": "2.0.0",
+ "version": "2.0.1",
"description": "A cdb implementation for node.js",
"author": "Eric Norris",
"repository": {
src/index.js
test/cdb-test.js
@@ -189,7 +189,7 @@ vows.describe('cdb-test').addBatch({
189
}).addBatch({
190
'The CDB package\'s module.exports': {
191
topic: function() {
192
- return require('../src');
+ return require('../');
193
},
194
195
'should have a writable CDB': function(index) {
0 commit comments