@uipath/packager-tool-workflowcompiler-browser 1.196.0 → 1.197.0-preview.65
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 -5
- package/package.json +30 -41
- package/src/index.ts +3 -5
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
// src/index.ts
|
|
2
|
-
import { toolsFactoryRepository } from "@uipath/solutionpackager-tool-core";
|
|
3
|
-
|
|
4
1
|
// src/i18n/index.ts
|
|
5
2
|
import { I18nManager } from "@uipath/solutionpackager-tool-core";
|
|
6
3
|
// src/i18n/locales/de.json
|
|
@@ -1222,6 +1219,8 @@ class WorkflowCompilerToolFactory {
|
|
|
1222
1219
|
return this.bundleExecutor;
|
|
1223
1220
|
}
|
|
1224
1221
|
}
|
|
1222
|
+
export {
|
|
1223
|
+
WorkflowCompilerToolFactory
|
|
1224
|
+
};
|
|
1225
1225
|
|
|
1226
|
-
|
|
1227
|
-
toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory);
|
|
1226
|
+
//# debugId=7131BE6BC75CD59264756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,43 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@microsoft/signalr": "^10.0.0",
|
|
34
|
-
"@uipath/solutionpackager-tool-core": "1.196.0",
|
|
35
|
-
"@vitest/browser": "^4.1.6",
|
|
36
|
-
"@vitest/browser-playwright": "^4.1.6",
|
|
37
|
-
"@vitest/coverage-v8": "^4.1.6",
|
|
38
|
-
"playwright": "^1.57.0",
|
|
39
|
-
"typescript": "^6.0.2",
|
|
40
|
-
"vitest": "^4.1.6"
|
|
41
|
-
},
|
|
42
|
-
"gitHead": "bed2b46f1ec33a47a7dcae2e6d4b7ab99bd06981"
|
|
2
|
+
"name": "@uipath/packager-tool-workflowcompiler-browser",
|
|
3
|
+
"version": "1.197.0-preview.65",
|
|
4
|
+
"description": "UiPath Workflow Compiler tool - browser implementation",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"source": "./src/index.ts",
|
|
9
|
+
"default": "./dist/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/UiPath/cli.git",
|
|
15
|
+
"directory": "packages/packager/packager-tool-workflowcompiler-browser"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"registry": "https://registry.npmjs.org/"
|
|
19
|
+
},
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"src"
|
|
24
|
+
],
|
|
25
|
+
"author": "",
|
|
26
|
+
"license": "ISC",
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@uipath/solutionpackager-tool-core": "1.197.0",
|
|
29
|
+
"@microsoft/signalr": ">=7 <11"
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "9388ccbe5e739c9578bfd9b5395980fb63e11d9c"
|
|
43
32
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { toolsFactoryRepository } from "@uipath/solutionpackager-tool-core";
|
|
2
1
|
import "./i18n/index.js";
|
|
3
|
-
import { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
// Workflow Compiler (browser) tool factory. Consumers register it explicitly via
|
|
4
|
+
// `toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory())`.
|
|
5
|
+
export { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
|