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", "type": "node",
"request": "launch", "request": "launch",
"runtimeArgs": [ "runtimeArgs": ["--watch"],
"--watch"
],
"name": "Playground: Server", "name": "Playground: Server",
"outputCapture": "std", "outputCapture": "std",
"program": "start.js", "program": "start.js",
"cwd": "${workspaceFolder}/playgrounds/demo", "cwd": "${workspaceFolder}/playgrounds/demo",
"cascadeTerminateToConfigurations": [ "cascadeTerminateToConfigurations": ["Playground: Browser"]
"Playground: Browser"
]
}, },
{ {
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Run sandbox", "name": "Run sandbox",
"program": "${workspaceFolder}/playgrounds/sandbox/run.js" "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": [ "compounds": [
{ {
"name": "Playground: Full", "name": "Playground: Full",
"configurations": [ "configurations": ["Playground: Server", "Playground: Browser"]
"Playground: Server",
"Playground: Browser"
]
} }
] ]
} }

@ -1022,7 +1022,7 @@ function selector_to_blocks(children, parent_complex_selector) {
if (!parent_complex_selector) { if (!parent_complex_selector) {
error(child, 'nesting-selector-not-allowed'); error(child, 'nesting-selector-not-allowed');
} else { } 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'); throw new Error('unexpected nesting selector');
} }
} else { } else {

Loading…
Cancel
Save