Files
agent/scripts/webpack-helper.js
Róbert Kiss 67a55363da build(webpack): Fix the request of a dependency is an expression (#337)
* build(webpack): Fix the request of a dependency is an expression

Critical dependency: the request of a dependency is an expression

* style: Fix spaces after object literal braces
2017-07-05 18:35:56 +02:00

6 lines
120 B
JavaScript

const path = require('path');
module.exports.root = function root(dir, __path) {
return path.join(dir, __path);
};