Skip to content

Commit

Permalink
Merge branch 'develop' into bug/114-incorrect-behaviour-when-trying-t…
Browse files Browse the repository at this point in the history
…o-retrievedeploy-when-single-child-folders-are-compressed
  • Loading branch information
anasilva105 authored Apr 30, 2024
2 parents 3097d5e + 60142d0 commit 3ef0b42
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@
"group": "devtools"
},
{
"when": "resourcePath =~ /deploy/ || (resourcePath =~ /retrieve/ && (resourceExtname == '.json' || resourceExtname == '.html' || resourceExtname == '.sql' || resourceExtname == '.ssjs' || resourceLangId == 'markdown' || resourceLangId == 'AMPscript'))",
"when": "resourcePath =~ /deploy/",
"command": "sfmc-devtools-vscext.devtoolsCMDeploy",
"group": "devtools"
},
{
"when": "resourcePath =~ /retrieve/ && (resourceExtname == '.json' || resourceExtname == '.html' || resourceExtname == '.sql' || resourceExtname == '.ssjs' || resourceLangId == 'markdown' || resourceLangId == 'AMPscript' || resourceDirname =~ /asset\\\\[a-zA-Z]*/)",
"command": "sfmc-devtools-vscext.devtoolsCMDeploy",
"group": "devtools"
},
Expand Down Expand Up @@ -97,7 +102,12 @@
"group": "devtools"
},
{
"when": "resourcePath =~ /deploy/ || (resourcePath =~ /retrieve/ && (resourceExtname == '.json' || resourceExtname == '.html' || resourceExtname == '.sql' || resourceExtname == '.ssjs' || resourceLangId == 'markdown' || resourceLangId == 'AMPscript'))",
"when": "resourcePath =~ /deploy/",
"command": "sfmc-devtools-vscext.devtoolsCMDeploy",
"group": "devtools"
},
{
"when": "resourcePath =~ /retrieve/ && (resourceExtname == '.json' || resourceExtname == '.html' || resourceExtname == '.sql' || resourceExtname == '.ssjs' || resourceLangId == 'markdown' || resourceLangId == 'AMPscript')",
"command": "sfmc-devtools-vscext.devtoolsCMDeploy",
"group": "devtools"
},
Expand Down

0 comments on commit 3ef0b42

Please sign in to comment.