Skip to content

Commit

Permalink
Add index.js file that returns the dist location and version when req…
Browse files Browse the repository at this point in the history
…uired
  • Loading branch information
Paul Winkler committed Feb 21, 2014
1 parent 7a1b3a4 commit 66ecaad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var pack = require('./package');
var path = require('path');

module.exports = {
version: pack.version,
dist: path.resolve(__dirname, 'dist')
};

0 comments on commit 66ecaad

Please sign in to comment.