juju / juju-gui

Juju-GUI is a web-based GUI for Juju <https://jujucharms.com/>.
Other
182 stars 85 forks source link

Add non-relative imports to wepack #3985

Closed huwshimi closed 5 years ago

huwshimi commented 5 years ago

Use a webpack resolver so that instead of doing this:

const Analytics = require('../../../test/fake-analytics');

You can do this:

const Analytics = require('test/fake-analytics');