They were, in fact... doing something
This commit is contained in:
parent
604b355cce
commit
a40d0da7bb
1 changed files with 8 additions and 6 deletions
14
.vscode/tasks.json
vendored
14
.vscode/tasks.json
vendored
|
@ -18,7 +18,6 @@
|
||||||
"detail": "Setup pnpm",
|
"detail": "Setup pnpm",
|
||||||
"command": "pnpm i",
|
"command": "pnpm i",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
// "${workspaceFolderBasename}"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "updatefrontendlib",
|
"label": "updatefrontendlib",
|
||||||
|
@ -35,7 +34,7 @@
|
||||||
"detail": "rollup -c",
|
"detail": "rollup -c",
|
||||||
"script": "build",
|
"script": "build",
|
||||||
"path": "",
|
"path": "",
|
||||||
"problemMatcher": [],
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "buildall",
|
"label": "buildall",
|
||||||
|
@ -46,7 +45,8 @@
|
||||||
"pnpmsetup",
|
"pnpmsetup",
|
||||||
"updatefrontendlib",
|
"updatefrontendlib",
|
||||||
"build"
|
"build"
|
||||||
]
|
],
|
||||||
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
// DEPLOY
|
// DEPLOY
|
||||||
{
|
{
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"createfolders"
|
"createfolders"
|
||||||
],
|
],
|
||||||
"command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude=`src/` --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/dev/plugins/${workspaceFolderBasename}",
|
"command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude='src/' --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/dev/plugins/${workspaceFolderBasename}",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -86,7 +86,8 @@
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"deploy",
|
"deploy",
|
||||||
"chmodfolders"
|
"chmodfolders"
|
||||||
]
|
],
|
||||||
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
// ALL-IN-ONE
|
// ALL-IN-ONE
|
||||||
{
|
{
|
||||||
|
@ -97,7 +98,8 @@
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"buildall",
|
"buildall",
|
||||||
"deployall"
|
"deployall"
|
||||||
]
|
],
|
||||||
|
"problemMatcher": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue