gecko-dev/devtools/client/inspector/configs/development.json
Julian Descottes 3f0ff25997 Bug 1321509 - use devtools-local-toolbox to load the inspector in content;r=bgrins,tromey
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

--HG--
extra : rebase_source : aba8fac87b66546dbb98f8f8d476cd1557c2659d
2016-12-07 18:24:51 +01:00

22 lines
415 B
JSON

{
"title": "Inspector",
"environment": "development",
"baseWorkerURL": "public/build/",
"theme": "light",
"host": "",
"logging": {
"client": false,
"firefoxProxy": false
},
"features": {
},
"firefox": {
"proxyHost": "localhost:9000",
"webSocketConnection": false,
"webSocketHost": "localhost:6080"
},
"development": {
"serverPort": 8000,
"customIndex": true
}
}