@uipath/packager-tool-workflowcompiler 1.196.0 → 1.197.0-preview.59
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/index.d.ts +1 -0
- package/dist/index.js +4 -7
- package/package.json +3 -4
- package/src/index.ts +3 -7
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -649,9 +649,6 @@ I18nManager.registerTranslations("zh-CN", zh_CN_default);
|
|
|
649
649
|
I18nManager.registerTranslations("zh-TW", zh_TW_default);
|
|
650
650
|
I18nManager.registerTranslations("zu", zu_default);
|
|
651
651
|
|
|
652
|
-
// src/index.ts
|
|
653
|
-
import { toolsFactoryRepository } from "@uipath/solutionpackager-tool-core";
|
|
654
|
-
|
|
655
652
|
// src/workflow-compiler-tool-factory.ts
|
|
656
653
|
import { execSync } from "node:child_process";
|
|
657
654
|
import {
|
|
@@ -1252,9 +1249,9 @@ class WorkflowCompilerToolFactory {
|
|
|
1252
1249
|
}
|
|
1253
1250
|
}
|
|
1254
1251
|
}
|
|
1255
|
-
|
|
1256
|
-
// src/index.ts
|
|
1257
|
-
toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory);
|
|
1258
1252
|
export {
|
|
1259
|
-
setupWorkflowCompiler
|
|
1253
|
+
setupWorkflowCompiler,
|
|
1254
|
+
WorkflowCompilerToolFactory
|
|
1260
1255
|
};
|
|
1256
|
+
|
|
1257
|
+
//# debugId=50A7EA5FC29ACF3664756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/packager-tool-workflowcompiler",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.197.0-preview.59",
|
|
4
4
|
"description": "UiPath Workflow Compiler tool implementation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -20,14 +20,13 @@
|
|
|
20
20
|
"types": "./dist/index.d.ts",
|
|
21
21
|
"files": [
|
|
22
22
|
"dist",
|
|
23
|
-
"!dist/**/*.map",
|
|
24
23
|
"src"
|
|
25
24
|
],
|
|
26
25
|
"author": "",
|
|
27
26
|
"license": "ISC",
|
|
28
27
|
"peerDependencies": {
|
|
29
|
-
"@uipath/solutionpackager-tool-core": "1.
|
|
28
|
+
"@uipath/solutionpackager-tool-core": "1.197.0"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {},
|
|
32
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "df0e2b8140cced13f463b487214927c82bc0f85b"
|
|
33
32
|
}
|
package/src/index.ts
CHANGED
|
@@ -5,15 +5,11 @@
|
|
|
5
5
|
import "./i18n/index.js";
|
|
6
6
|
|
|
7
7
|
// ============================================================================
|
|
8
|
-
//
|
|
8
|
+
// Workflow Compiler tool factory. Consumers register it explicitly via
|
|
9
|
+
// `toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory())`.
|
|
9
10
|
// ============================================================================
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
import { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
|
|
13
|
-
|
|
14
|
-
toolsFactoryRepository.registerProjectToolFactory(
|
|
15
|
-
new WorkflowCompilerToolFactory(),
|
|
16
|
-
);
|
|
12
|
+
export { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
|
|
17
13
|
|
|
18
14
|
// ============================================================================
|
|
19
15
|
// Export setup function for consumers to configure compiler path or version
|