We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should introduce some VS Code tasks for debugging Piral instances or pilets.
It is yet unclear if we can use the same for piral-cli-parcel and piral-cli-webpack. Maybe distinguish for now?
piral-cli-parcel
piral-cli-webpack
https://code.visualstudio.com/api/extension-guides/debugger-extension
The text was updated successfully, but these errors were encountered:
I'd take this one.
Sorry, something went wrong.
launch.json:
{ "version": "0.2.0", "configurations": [ { "type": "pwa-msedge", "request": "launch", "name": "webdebug", "url": "http://localhost:1234", "webRoot": "${workspaceFolder}", "runtimeExecutable": "stable", "runtimeArgs": ["--headless"] } ], "compounds": [ { "name": "Launch Piral Instance", "configurations": ["webdebug"], "stopAll": true, "preLaunchTask": "npm start" } ] }
and the tasks.json:
{ "version": "2.0.0", "tasks": [ { "type": "npm", "script": "start", "label": "npm start", "isBackground": true, "problemMatcher": { "owner": "webpack", "severity": "error", "fileLocation": "absolute", "pattern": [ { "regexp": "ERROR in (.*)", "file": 1 }, { "regexp": "\\((\\d+),(\\d+)\\):(.*)", "line": 1, "column": 2, "message": 3 } ], "background": { "activeOnStart": true, "beginsPattern": "Running", "endsPattern": "compiled successfully" } }, "options": { "cwd": "${workspaceFolder}" }, "dependsOn": [] } ] }
Part of 0.3.
FlorianRappl
No branches or pull requests
We should introduce some VS Code tasks for debugging Piral instances or pilets.
It is yet unclear if we can use the same for
piral-cli-parcel
andpiral-cli-webpack
. Maybe distinguish for now?https://code.visualstudio.com/api/extension-guides/debugger-extension
The text was updated successfully, but these errors were encountered: