Rever launch.json changes

pull/9549/head
Albert 3 years ago
parent 89667b4ea7
commit 8c81aa759a
No known key found for this signature in database
GPG Key ID: 639EBA2F18800B0E

@ -10,38 +10,24 @@
{
"type": "node",
"request": "launch",
"runtimeArgs": [
"--watch"
],
"runtimeArgs": ["--watch"],
"name": "Playground: Server",
"outputCapture": "std",
"program": "start.js",
"cwd": "${workspaceFolder}/playgrounds/demo",
"cascadeTerminateToConfigurations": [
"Playground: Browser"
]
"cascadeTerminateToConfigurations": ["Playground: Browser"]
},
{
"type": "node",
"request": "launch",
"name": "Run sandbox",
"program": "${workspaceFolder}/playgrounds/sandbox/run.js"
},
{
"type": "node-terminal",
"name": "Run Script: test",
"request": "launch",
"command": "pnpm test css -- -t omit-scoping-attribute-whitespace-multiple",
"cwd": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "Playground: Full",
"configurations": [
"Playground: Server",
"Playground: Browser"
]
"configurations": ["Playground: Server", "Playground: Browser"]
}
]
}

@ -1022,7 +1022,7 @@ function selector_to_blocks(children, parent_complex_selector) {
if (!parent_complex_selector) {
error(child, 'nesting-selector-not-allowed');
} else {
// We shoudld've already handled these above
// We shoudld've already handled these above (except for multiple nesting selectors, which is supposed to work?)
throw new Error('unexpected nesting selector');
}
} else {

Loading…
Cancel
Save