From a32edbeb1164db688ffc21dd4d2c6cb4e4073580 Mon Sep 17 00:00:00 2001 From: Tyler Kellen Date: Wed, 17 Dec 2014 12:44:40 -0500 Subject: [PATCH] Release: 0.2.2 --- CHANGELOG | 4 ++++ README.md | 6 +++++- package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 28a7a45..52ae84c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v0.2.2: + date: 2014-12-17 + changes: + - Expose interpret. v0.2.0: date: 2014-04-20 changes: diff --git a/README.md b/README.md index 02be9b4..9ebf949 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This module can find, require and register any file type the npm ecosystem has a `.co, .coffee, .csv, .iced, .ini, .js, .json, .jsx, .litcoffee, .ls, .toml, .xml, .yaml, .yml` -**Note:** If you'd like to add a new extension, please make a PR for [interpret](https://github.com/tkellen/node-interpret). +**Note:** If you'd like to add a new extension, please make a PR for [interpret]. ## API @@ -35,9 +35,13 @@ require('file.coffee'); ### load (filepath) Automatically call `requireFor`, then require the requested file and return the result. +### interpret +The underlying [interpret] module. + #### Usage ```js var rechoir = require('rechoir'); rechoir.load('file.coffee'); ``` +[interpret]: https://github.com/tkellen/node-interpret diff --git a/package.json b/package.json index 30d142f..160128f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rechoir", "description": "Require any supported file as a node module.", - "version": "0.2.1", + "version": "0.2.2", "homepage": "https://github.com/tkellen/node-rechoir", "author": { "name": "Tyler Kellen",