@uipath/tasks-tool 1.1.0 → 1.196.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/dist/tool.js +5751 -4581
- package/package.json +16 -23
- package/tests/performance.e2e.test.ts +2 -1
package/package.json
CHANGED
|
@@ -1,25 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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.196.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": "94d71f9c52214980a1f0ae62b3f5372095788553"
|
|
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
|
-
|
|
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
|
() => {
|