@uipath/solutionpackager-tool-core 0.0.26 → 0.0.29

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.
@@ -34,4 +34,8 @@ export interface ProjectOperationContext {
34
34
  * Logger for the operation
35
35
  */
36
36
  logger?: IToolLogger;
37
+ /**
38
+ * Version of the workflow compiler to use for remote packing
39
+ */
40
+ workflowCompilerVersion?: string;
37
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/solutionpackager-tool-core",
3
- "version": "0.0.26",
3
+ "version": "0.0.29",
4
4
  "description": "UiPath contracts for solution packager tools",
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,12 +12,19 @@
12
12
  "types": "./dist/index.d.ts",
13
13
  "scripts": {
14
14
  "build": "rslib build",
15
+ "prepack": "bun run build",
16
+ "publish:dry": "bun publish --dry-run",
17
+ "publish:gh": "bun publish",
18
+ "version:patch": "bun version patch --no-git-tag-version",
19
+ "version:minor": "bun version minor --no-git-tag-version",
20
+ "version:major": "bun version major --no-git-tag-version",
15
21
  "test": "vitest run",
16
22
  "test:browser": "vitest run --config=vitest.browser.config.ts",
17
23
  "lint": "biome check ."
18
24
  },
19
25
  "files": [
20
- "dist"
26
+ "dist",
27
+ "!dist/**/*.map"
21
28
  ],
22
29
  "author": "",
23
30
  "license": "ISC",
@@ -39,7 +46,7 @@
39
46
  "vitest": "^4.0.14"
40
47
  },
41
48
  "dependencies": {
42
- "@uipath/filesystem": "^0.0.5",
49
+ "@uipath/filesystem": "^0.1.6",
43
50
  "fflate": "^0.8.2"
44
51
  }
45
52
  }