Settings for Zip glob patterns
This commit is contained in:
Коммит
1215930b67
12
package.json
12
package.json
|
@ -323,6 +323,16 @@
|
|||
"All"
|
||||
],
|
||||
"description": "%azFunc.templateFilterDescription%"
|
||||
},
|
||||
"azureFunctions.zipGlobPattern": {
|
||||
"type": "string",
|
||||
"default": "**/*",
|
||||
"description": "Defines which files in the workspace to deploy. This applies to Zip deploy only, has no effect on other deployment methods."
|
||||
},
|
||||
"azureFunctions.zipIgnorePattern": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Defines which files in the workspace to ignore for Zip deploy. This applies to Zip deploy only, has no effect on other deployment methods."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -359,7 +369,7 @@
|
|||
"ms-rest": "^2.2.2",
|
||||
"ms-rest-azure": "^2.3.1",
|
||||
"request-promise": "^4.2.2",
|
||||
"vscode-azureappservice": "~0.7.2",
|
||||
"vscode-azureappservice": "~0.8.0",
|
||||
"vscode-azureextensionui": "~0.3.1",
|
||||
"vscode-extension-telemetry": "^0.0.6",
|
||||
"vscode-nls": "^2.0.2",
|
||||
|
|
|
@ -44,7 +44,7 @@ export async function deploy(telemetryProperties: { [key: string]: string; }, tr
|
|||
await verifyBetaRuntime(outputChannel, client, siteWrapper);
|
||||
}
|
||||
|
||||
await siteWrapper.deploy(folderPath, client, outputChannel);
|
||||
await siteWrapper.deploy(folderPath, client, outputChannel, 'azureFunctions');
|
||||
}
|
||||
|
||||
async function getJavaFolderPath(outputChannel: vscode.OutputChannel, basePath: string, ui: IUserInterface): Promise<string> {
|
||||
|
|
Загрузка…
Ссылка в новой задаче