@uipath/tasks-tool 1.1.0 → 1.195.0

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/package.json CHANGED
@@ -1,25 +1,18 @@
1
1
  {
2
- "name": "@uipath/tasks-tool",
3
- "version": "1.1.0",
4
- "description": "Manage Action Center tasks.",
5
- "type": "module",
6
- "main": "./dist/tool.js",
7
- "exports": {
8
- ".": "./dist/tool.js"
9
- },
10
- "bin": {
11
- "tasks-tool": "./dist/index.js"
12
- },
13
- "devDependencies": {
14
- "@types/node": "^25.5.2",
15
- "@uipath/auth": "1.1.0",
16
- "@uipath/common": "1.1.0",
17
- "@uipath/uipath-typescript": "^1.3.7",
18
- "commander": "^14.0.3",
19
- "typescript": "^6.0.2"
20
- },
21
- "publishConfig": {
22
- "registry": "https://registry.npmjs.org/"
23
- },
24
- "gitHead": "06e8c8f566df4b87da4a008635483c62f64f33f0"
2
+ "name": "@uipath/tasks-tool",
3
+ "license": "MIT",
4
+ "version": "1.195.0",
5
+ "description": "Manage Action Center tasks.",
6
+ "type": "module",
7
+ "main": "./dist/tool.js",
8
+ "exports": {
9
+ ".": "./dist/tool.js"
10
+ },
11
+ "bin": {
12
+ "tasks-tool": "./dist/index.js"
13
+ },
14
+ "publishConfig": {
15
+ "registry": "https://registry.npmjs.org/"
16
+ },
17
+ "gitHead": "65fabb84552758b2710d8ca68470e70a9b1d19bc"
25
18
  }
@@ -14,7 +14,8 @@ const HELP_BUDGET_MS = 1_000;
14
14
  const manifest = readManifest<E2EManifest>(MANIFEST_PATH);
15
15
  const projectDir = manifest.sharedInstall.tempDir;
16
16
 
17
- describe("tasks performance", () => {
17
+ // Performance budgets are unreliable on Windows CI runners; skip there.
18
+ describe.skipIf(process.platform === "win32")("tasks performance", () => {
18
19
  it(
19
20
  `uip tasks -h completes within ${HELP_BUDGET_MS}ms`,
20
21
  () => {