Add package.json to devtools/client/inspector Integration with devtools-local-toolbox: - provides development server - default webpack config - landing page to select a tab In this patch: - bin/dev-server-js contains the inspector specific routes - webpack/*-sham.js : inspector dependencies that had to be mocked ideally, decoupling work should continue and the inspector client should only ever require files that require no chrome priviledged APIs. - toolbox.js contains the interface with devtools-local-toolbox bootstrap and the inspector panel initialization - configs/development.json is the inspector config for the devtools-local-toolbox MozReview-Commit-ID: 7YQLUlgSyDX
12 lines
360 B
JavaScript
12 lines
360 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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";
|
|
|
|
module.exports = {
|
|
attachThread: () => {},
|
|
};
|