7d73ebf7d0
* chore: update packages
* chore: add debug 2022 vscode task
* feat(converter): ngons and edges on `to_speckle`
* feat(converter): big improvements 🥳
* feat(convert): add triangulation for faces with holes
you'll lose the true face with hole on receive, but this is the best
intermediary solution that won't break other connectors
26 lines
871 B
JSON
26 lines
871 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
// note that default shell needs to be powershell
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Debug SketchUp 2021",
|
|
"type": "shell",
|
|
"command": "open -a '/Applications/SketchUp 2021/SketchUp.app' --args -rdebug 'ide port=7000'",
|
|
"windows": {
|
|
"command": "&'C:/Program Files/SketchUp/SketchUp 2021/SketchUp.exe' -rdebug 'ide port=7000'",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Debug SketchUp 2022",
|
|
"type": "shell",
|
|
"command": "open -a '/Applications/SketchUp 2022/SketchUp.app' --args -rdebug 'ide port=7000'",
|
|
"windows": {
|
|
"command": "&'C:/Program Files/SketchUp/SketchUp 2022/SketchUp.exe' -rdebug 'ide port=7000'",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
]
|
|
} |