From 99b3f7d00e14939da5b4bf21a2f448c147856ef2 Mon Sep 17 00:00:00 2001 From: Paul Winkler Date: Fri, 21 Feb 2014 10:10:49 +0000 Subject: [PATCH] Add index.js file that returns the dist location and version when required --- index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 00000000000..ce17d0d338c --- /dev/null +++ b/index.js @@ -0,0 +1,7 @@ +var pack = require('./package'); +var path = require('path'); + +module.exports = { + version: pack.version, + dist: path.resolve(__dirname, 'dist') +}; \ No newline at end of file