mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* Fixes #66: As a developer, I want to limit the audience that sees new features, so that we can control the message and positioning of our tool. Implements simple feature flagging via URL parameters. Provide "?flags=x,y,z" to enable flags x, y, and z. * Fixing type to use Location instead of URL * Updating README with info on how to use feature flags
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Debug Chrome",
|
|
"url": "http://localhost:8000",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Gatsby develop",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
"args": ["develop"],
|
|
"stopOnEntry": false,
|
|
"runtimeArgs": ["--nolazy"],
|
|
"sourceMaps": false
|
|
},
|
|
{
|
|
"name": "Gatsby build",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
"args": ["build"],
|
|
"stopOnEntry": false,
|
|
"runtimeArgs": ["--nolazy"],
|
|
"sourceMaps": false
|
|
},
|
|
{
|
|
"name": "Debug Jest Tests",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"--inspect-brk",
|
|
"--inspect",
|
|
"${workspaceRoot}/node_modules/.bin/jest"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"port": 9229
|
|
}
|
|
]
|
|
}
|