Skip to content

Commit

Permalink
segment out joiner.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Jan 29, 2017
1 parent 4b76b40 commit 632b99c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Another rework of the API focused on clarity between json, geojson and nested va
* [0cce72ef36b142ab654ef469c69853e7c6de8080](https://github.com/mhkeller/joiner/commit/0cce72ef36b142ab654ef469c69853e7c6de8080)
* [629f7b4e8ece8c05f2be967565e936626163607d](https://github.com/mhkeller/joiner/commit/629f7b4e8ece8c05f2be967565e936626163607d)
* [e278ba88e033d9b9682f36a19d62082198a3b206](https://github.com/mhkeller/joiner/commit/e278ba88e033d9b9682f36a19d62082198a3b206)
* Remove dependency on indian-ocean for easier browser-compatibility and lighter-weight.
* [d246c7cacbf74caf58b8b28bcbbe66734d65df27](https://github.com/mhkeller/joiner/commit/d246c7cacbf74caf58b8b28bcbbe66734d65df27)
* [d246c7cacbf74caf58b8b28bcbbe66734d65df27](https://github.com/mhkeller/joiner/commit/d246c7cacbf74caf58b8b28bcbbe66734d65df27)
* [104a89ee72e3024743845594b36356c44f91cf7b](https://github.com/mhkeller/joiner/commit/104a89ee72e3024743845594b36356c44f91cf7b)

# 1.0.1

Expand Down
2 changes: 1 addition & 1 deletion bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// var io = require('indian-ocean')
var optimist = require('optimist')
var joiner = require('../src/index.js')
var joiner = require('../src/joiner/index.js')
var queue = require('d3-queue').queue

var io = require('../src/io/index.js')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "joiner",
"version": "1.0.1",
"description": "A simple utility for SQL-like joins with Json or GeoJson data. Also creates join reports so you can know how successful a given join was.",
"main": "src/index.js",
"main": "src/joiner/index.js",
"directories": {
"example": "examples"
},
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global describe, it */

var joiner = require('../src/index.js')
var joiner = require('../src/joiner/index.js')
var io = require('indian-ocean')
var chai = require('chai')
var assert = chai.assert
Expand Down

0 comments on commit 632b99c

Please sign in to comment.