Bug 1596686 - Use absolute paths for require calls r=gl

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D58243
This commit is contained in:
Julian Descottes
2019-12-27 09:09:51 +00:00
parent b4439693d2
commit 3fa1b45876
584 changed files with 2727 additions and 1414 deletions

View File

@@ -21,9 +21,16 @@ loader.lazyRequireGetter(
"devtools/shared/platform/clipboard"
);
const ChangesApp = createFactory(require("./components/ChangesApp"));
const { getChangesStylesheet } = require("./selectors/changes");
const { resetChanges, trackChange } = require("./actions/changes");
const ChangesApp = createFactory(
require("devtools/client/inspector/changes/components/ChangesApp")
);
const {
getChangesStylesheet,
} = require("devtools/client/inspector/changes/selectors/changes");
const {
resetChanges,
trackChange,
} = require("devtools/client/inspector/changes/actions/changes");
class ChangesView {
constructor(inspector, window) {