This commit is contained in:
Brandon Waterloo [MSFT] 2022-01-07 08:19:51 -05:00 коммит произвёл GitHub
Родитель 3a61b54e36
Коммит 986f51ed95
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 1 удалений

1
.vscode/launch.json поставляемый
Просмотреть файл

@ -59,6 +59,7 @@
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/src/test/clientExtension",
"--disable-extension=ms-azuretools.vscode-docker", // Keep the Docker extension from running so it doesn't interfere with testing
"--disable-extension=redhat.vscode-yaml", // Keep the YAML extension from running so it doesn't interfere with testing
],
"preLaunchTask": "tsc-watch: client extension",
"presentation": {

Просмотреть файл

@ -169,7 +169,7 @@ export class ComposeDocument {
}
private buildYamlDocument(): YamlDocument {
const composedTokens = new Composer().compose(this.fullCst.value, true);
const composedTokens = new Composer({ merge: true }).compose(this.fullCst.value, true);
const [yamlDocument] = composedTokens;
if (!isDocument(yamlDocument)) {