move demo projects to webpack (#1915)

This commit is contained in:
Eugenio Romano
2017-05-31 20:13:09 +01:00
committed by Eugenio Romano
parent 5025303980
commit 90a7b282ab
198 changed files with 7000 additions and 3349 deletions

View File

@@ -0,0 +1,10 @@
var path = require('path');
var _root = path.resolve(__dirname, '..');
function root(args) {
args = Array.prototype.slice.call(arguments, 0);
return path.join.apply(path, [_root].concat(args));
}
exports.root = root;