@nsxbet/playwright-orchestrator 0.2.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/README.md +161 -0
- package/bin/run.js +5 -0
- package/dist/commands/assign.d.ts +23 -0
- package/dist/commands/assign.d.ts.map +1 -0
- package/dist/commands/assign.js +256 -0
- package/dist/commands/assign.js.map +1 -0
- package/dist/commands/extract-timing.d.ts +40 -0
- package/dist/commands/extract-timing.d.ts.map +1 -0
- package/dist/commands/extract-timing.js +196 -0
- package/dist/commands/extract-timing.js.map +1 -0
- package/dist/commands/list-tests.d.ts +16 -0
- package/dist/commands/list-tests.d.ts.map +1 -0
- package/dist/commands/list-tests.js +98 -0
- package/dist/commands/list-tests.js.map +1 -0
- package/dist/commands/merge-timing.d.ts +19 -0
- package/dist/commands/merge-timing.d.ts.map +1 -0
- package/dist/commands/merge-timing.js +217 -0
- package/dist/commands/merge-timing.js.map +1 -0
- package/dist/core/ckk-algorithm.d.ts +38 -0
- package/dist/core/ckk-algorithm.d.ts.map +1 -0
- package/dist/core/ckk-algorithm.js +192 -0
- package/dist/core/ckk-algorithm.js.map +1 -0
- package/dist/core/estimate.d.ts +72 -0
- package/dist/core/estimate.d.ts.map +1 -0
- package/dist/core/estimate.js +142 -0
- package/dist/core/estimate.js.map +1 -0
- package/dist/core/grep-pattern.d.ts +61 -0
- package/dist/core/grep-pattern.d.ts.map +1 -0
- package/dist/core/grep-pattern.js +104 -0
- package/dist/core/grep-pattern.js.map +1 -0
- package/dist/core/index.d.ts +9 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +9 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/lpt-algorithm.d.ts +28 -0
- package/dist/core/lpt-algorithm.d.ts.map +1 -0
- package/dist/core/lpt-algorithm.js +80 -0
- package/dist/core/lpt-algorithm.js.map +1 -0
- package/dist/core/slugify.d.ts +13 -0
- package/dist/core/slugify.d.ts.map +1 -0
- package/dist/core/slugify.js +19 -0
- package/dist/core/slugify.js.map +1 -0
- package/dist/core/test-discovery.d.ts +46 -0
- package/dist/core/test-discovery.d.ts.map +1 -0
- package/dist/core/test-discovery.js +192 -0
- package/dist/core/test-discovery.js.map +1 -0
- package/dist/core/timing-store.d.ts +90 -0
- package/dist/core/timing-store.d.ts.map +1 -0
- package/dist/core/timing-store.js +280 -0
- package/dist/core/timing-store.js.map +1 -0
- package/dist/core/types.d.ts +241 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +54 -0
- package/dist/core/types.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nsxbet/playwright-orchestrator",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Intelligent Playwright test distribution across CI shards using historical timing data",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"playwright-orchestrator": "./bin/run.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"bin"
|
|
14
|
+
],
|
|
15
|
+
"oclif": {
|
|
16
|
+
"bin": "playwright-orchestrator",
|
|
17
|
+
"dirname": "playwright-orchestrator",
|
|
18
|
+
"commands": "./dist/commands",
|
|
19
|
+
"topicSeparator": " "
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsc -b",
|
|
23
|
+
"dev": "tsc -b --watch",
|
|
24
|
+
"clean": "rm -rf dist",
|
|
25
|
+
"lint": "biome check .",
|
|
26
|
+
"lint:fix": "biome check --write .",
|
|
27
|
+
"format": "biome format --write .",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"test": "bun test",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"version": "changeset version",
|
|
32
|
+
"release": "changeset publish"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"playwright",
|
|
36
|
+
"testing",
|
|
37
|
+
"sharding",
|
|
38
|
+
"ci",
|
|
39
|
+
"orchestrator",
|
|
40
|
+
"parallel"
|
|
41
|
+
],
|
|
42
|
+
"author": "NSXBet",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/NSXBet/playwright-orchestrator.git"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/NSXBet/playwright-orchestrator/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/NSXBet/playwright-orchestrator#readme",
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public",
|
|
54
|
+
"registry": "https://registry.npmjs.org/"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@oclif/core": "4.8.0",
|
|
61
|
+
"glob": "11.0.2"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@biomejs/biome": "2.3.11",
|
|
65
|
+
"@changesets/changelog-github": "^0.5.2",
|
|
66
|
+
"@changesets/cli": "^2.29.8",
|
|
67
|
+
"@types/node": "22.15.29",
|
|
68
|
+
"typescript": "5.9.3"
|
|
69
|
+
}
|
|
70
|
+
}
|