@uipath/case-tool 0.1.7 → 0.1.9
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/README.md +2 -2
- package/dist/index.js +6 -257657
- package/dist/tool.js +32690 -79231
- package/package.json +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/case-tool",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Manage Case Management instances, processes, and incidents.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"maintainers": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "bun build ./src/tool.ts --outdir dist --format esm --target node --external commander && bun build ./src/index.ts --outdir dist --format esm --target node",
|
|
34
|
+
"build": "bun build ./src/tool.ts --outdir dist --format esm --target node --external commander --external @uipath/common --external @uipath/auth --external @uipath/filesystem --external @uipath/solutionpackager-tool-core && bun build ./src/index.ts --outdir dist --format esm --target node --external '*/tool.js' --external commander --external @uipath/common --external @uipath/auth --external @uipath/filesystem --external @uipath/solutionpackager-tool-core",
|
|
35
35
|
"package": "bun run build && bun pm pack",
|
|
36
36
|
"lint": "biome check .",
|
|
37
37
|
"lint:fix": "biome check --write .",
|
|
@@ -40,17 +40,19 @@
|
|
|
40
40
|
"test:coverage": "vitest run --coverage && vitest run --coverage -c vitest.isolated.config.ts && cat coverage-isolated/lcov.info >> coverage/lcov.info && rm -rf coverage-isolated"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"commander": "^14.0.3",
|
|
44
43
|
"fflate": "^0.8.2"
|
|
45
44
|
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"commander": "^14.0.3",
|
|
47
|
+
"@uipath/common": "^0.1.7",
|
|
48
|
+
"@uipath/auth": "^0.1.6",
|
|
49
|
+
"@uipath/filesystem": "^0.1.6",
|
|
50
|
+
"@uipath/solutionpackager-tool-core": "^0.0.29"
|
|
51
|
+
},
|
|
46
52
|
"devDependencies": {
|
|
47
53
|
"@uipath/tool-case": "0.0.5",
|
|
48
|
-
"@uipath/auth": "workspace:*",
|
|
49
|
-
"@uipath/common": "workspace:*",
|
|
50
|
-
"@uipath/filesystem": "workspace:*",
|
|
51
54
|
"@uipath/maestro-sdk": "workspace:*",
|
|
52
55
|
"@uipath/orchestrator-sdk": "workspace:*",
|
|
53
|
-
"@uipath/solutionpackager-tool-core": "^0.0.18",
|
|
54
56
|
"@uipath/case-plan-converter": "^0.651.0",
|
|
55
57
|
"@types/node": "^25.2.3",
|
|
56
58
|
"bpmn-moddle": "^9.0.4",
|