Initial commit

This commit is contained in:
Tom Raithel
2017-01-20 07:23:25 +01:00
commit 37ae2943d5
9 changed files with 136 additions and 0 deletions

10
scripts/file.js Normal file
View File

@@ -0,0 +1,10 @@
var path = require('path');
module.exports = {
path: function(relativePath) {
return path.resolve(__dirname, '..', relativePath)
},
distDir: function() {
return this.path('dist');
}
};