summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 152a0051..3e0c0ea7 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -41,6 +41,14 @@
"command": "rsync -azp --rsh='ssh -p ${config:deckport} ${config:deckkey}' requirements.txt deck@${config:deckip}:${config:deckdir}/homebrew/dev/pluginloader/requirements.txt && ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'python -m ensurepip && python -m pip install --upgrade pip && python -m pip install --upgrade setuptools && python -m pip install -r ${config:deckdir}/homebrew/dev/pluginloader/requirements.txt'",
"problemMatcher": []
},
+ {
+ "label": "extracttext",
+ "type": "shell",
+ "group": "none",
+ "detail": "Check for new strings in the frontend source code and extract it into the corresponding json language files",
+ "command": "cd frontend && ./node_modules/.bin/i18next --config ./i18next-parser.config.mjs",
+ "problemMatcher": []
+ },
// BUILD
{
"label": "pnpmsetup",