Add index.js file that returns the dist location and version when required

This commit is contained in:
Paul Winkler
2014-02-21 10:10:49 +00:00
parent aa848529c0
commit 99b3f7d00e

7
index.js Normal file
View File

@@ -0,0 +1,7 @@
var pack = require('./package');
var path = require('path');
module.exports = {
version: pack.version,
dist: path.resolve(__dirname, 'dist')
};