@uipath/api-workflow-tool 1.197.0 → 1.198.0-preview.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/packager-tool.js +5 -1
- package/dist/tool.js +23566 -22038
- package/package.json +2 -2
package/dist/packager-tool.js
CHANGED
|
@@ -1873,6 +1873,10 @@ class ProjectTool {
|
|
|
1873
1873
|
this.logger.info("Pack operation is a noop");
|
|
1874
1874
|
return ToolResult.success();
|
|
1875
1875
|
}
|
|
1876
|
+
async cleanupAsync(_options, _cancellationToken) {
|
|
1877
|
+
this.logger.info("Cleanup operation is a noop");
|
|
1878
|
+
return ToolResult.success();
|
|
1879
|
+
}
|
|
1876
1880
|
async getUiProjectAsync(projectPath) {
|
|
1877
1881
|
const filePath = Path.join(projectPath, ProjectTool.ProjectFileName);
|
|
1878
1882
|
if (!await this.fileSystem.exists(filePath)) {
|
|
@@ -3292,4 +3296,4 @@ var toolsFactoryRepository2 = _global2[REGISTRY_KEY2];
|
|
|
3292
3296
|
// src/packager-tool.ts
|
|
3293
3297
|
toolsFactoryRepository2.registerProjectToolFactory(new ApiWorkflowToolFactory);
|
|
3294
3298
|
|
|
3295
|
-
//# debugId=
|
|
3299
|
+
//# debugId=23A175C5755BF7F464756E2164756E21
|