@uipath/maestro-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.
Files changed (3) hide show
  1. package/dist/index.js +6 -62819
  2. package/dist/tool.js +12341 -58887
  3. package/package.json +11 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/maestro-tool",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Create, debug, and run Maestro projects and jobs.",
5
5
  "private": false,
6
6
  "repository": {
@@ -26,22 +26,25 @@
26
26
  "dist"
27
27
  ],
28
28
  "scripts": {
29
- "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",
29
+ "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",
30
30
  "package": "bun run build && bun pm pack",
31
+ "test": "vitest run && vitest run -c vitest.isolated.config.ts",
32
+ "test:isolated": "vitest run -c vitest.isolated.config.ts",
33
+ "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",
31
34
  "lint": "biome check .",
32
35
  "lint:fix": "biome check --write ."
33
36
  },
34
- "dependencies": {
35
- "commander": "^14.0.3"
37
+ "peerDependencies": {
38
+ "commander": "^14.0.3",
39
+ "@uipath/common": "^0.1.7",
40
+ "@uipath/auth": "^0.1.6",
41
+ "@uipath/filesystem": "^0.1.6",
42
+ "@uipath/solutionpackager-tool-core": "^0.0.29"
36
43
  },
37
44
  "devDependencies": {
38
45
  "@uipath/tool-bpmn": "0.0.5",
39
- "@uipath/auth": "workspace:*",
40
- "@uipath/common": "workspace:*",
41
- "@uipath/filesystem": "workspace:*",
42
46
  "@uipath/maestro-sdk": "workspace:*",
43
47
  "@uipath/orchestrator-sdk": "workspace:*",
44
- "@uipath/solutionpackager-tool-core": "^0.0.26",
45
48
  "bpmn-moddle": "^9.0.4",
46
49
  "@types/node": "^25.2.3",
47
50
  "typescript": "^5"