diff --git a/History.md b/History.md index 601f90a..ddfcac2 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,8 @@ ## History +- v1.0.2 April 11, 2013 + - Fix `Cannot find module 'typeChecker'` + - v1.0.1 April 10, 2013 - Updated dependencies diff --git a/package.json b/package.json index 58bf6ed..bcf4da8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "getcontributors", - "version": "1.0.1", + "version": "1.0.2", "description": "Fetch the contributors of the repositories of the specified github users", "homepage": "https://github.com/bevry/getcontributors", "keywords": [ diff --git a/src/lib/getcontributors.coffee b/src/lib/getcontributors.coffee index a5d9bcb..f6bad39 100644 --- a/src/lib/getcontributors.coffee +++ b/src/lib/getcontributors.coffee @@ -21,7 +21,7 @@ module.exports = (opts,next) -> eachr = require('eachr') extendr = require('extendr') {TaskGroup} = require('taskgroup') - typeChecker = require('typeChecker') + typeChecker = require('typechecker') # Prepare [opts,next] = balUtil.extractOptsAndCallback(opts,next)