11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = {
|
|
path: function(relativePath) {
|
|
return path.resolve(__dirname, '..', relativePath)
|
|
},
|
|
distDir: function() {
|
|
return this.path('dist');
|
|
}
|
|
};
|