summaryrefslogtreecommitdiff
path: root/devtools/client/webconsole/new-console-output/reducers/index.js
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-12-21 21:30:53 +0000
committerMoonchild <moonchild@palemoon.org>2021-12-21 21:30:53 +0000
commit63f2b8552ad646ffd90338da302ddc32cf729fa8 (patch)
treefe349a8751d8505848a2c77174b80e9fa9c100d6 /devtools/client/webconsole/new-console-output/reducers/index.js
parent76820a38bd567e644a4d8d30dab09cd98a53f30e (diff)
downloadaura-central-63f2b8552ad646ffd90338da302ddc32cf729fa8.tar.gz
Issue %3005 - Move devtools back to source root
Devtools has a shit ton of hardcoded paths in itself that requires it to be in the tree root. It can't be moved trivially without changing hundreds of paths in the devtools modules.
Diffstat (limited to 'devtools/client/webconsole/new-console-output/reducers/index.js')
-rw-r--r--devtools/client/webconsole/new-console-output/reducers/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/devtools/client/webconsole/new-console-output/reducers/index.js b/devtools/client/webconsole/new-console-output/reducers/index.js
new file mode 100644
index 000000000..c67e01792
--- /dev/null
+++ b/devtools/client/webconsole/new-console-output/reducers/index.js
@@ -0,0 +1,17 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+"use strict";
+
+const { filters } = require("./filters");
+const { messages } = require("./messages");
+const { prefs } = require("./prefs");
+const { ui } = require("./ui");
+
+exports.reducers = {
+ filters,
+ messages,
+ prefs,
+ ui,
+};