add preview export target

This commit is contained in:
ForestOfLight
2026-02-11 14:59:08 -08:00
Unverified
parent cd0b427da1
commit 162ef58406
2 changed files with 35 additions and 0 deletions
+25
View File
@@ -39,6 +39,31 @@
"echo": true, "echo": true,
"close": true "close": true
} }
},
{
"label": "regolith: watch preview",
"type": "shell",
"command": "regolith watch preview",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
} }
] ]
} }
+10
View File
@@ -20,6 +20,16 @@
"bpName": "project.name+'[BP]'" "bpName": "project.name+'[BP]'"
}, },
"filters": [] "filters": []
},
"preview": {
"export": {
"build": "preview",
"readOnly": false,
"target": "development",
"rpName": "project.name+'[RP]'",
"bpName": "project.name+'[BP]'"
},
"filters": []
} }
} }
} }