@wojciechpiskorz/astroix 0.0.14 → 0.0.16
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 +2 -2
- package/dist/chrome.js +11745 -11655
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Requires [bun](https://bun.sh) and Node >= 22.12.
|
|
|
29
29
|
bun install # also in e2e/fixture/
|
|
30
30
|
bun run check && bun run typecheck # Biome + tsc
|
|
31
31
|
bun run test # vitest (unit)
|
|
32
|
-
bun run test:e2e # Playwright (boots e2e/fixture on :
|
|
32
|
+
bun run test:e2e # Playwright (boots e2e/fixture on :4314)
|
|
33
33
|
bun run build # tsup (node) + vite (chrome bundle) → dist
|
|
34
34
|
```
|
|
35
35
|
|
|
@@ -39,7 +39,7 @@ The e2e fixture consumes the local package via `file:../..` and registers `astro
|
|
|
39
39
|
|
|
40
40
|
### Ports
|
|
41
41
|
|
|
42
|
-
The owner's manual smoke owns `:4312` (`bun run smoke`); the e2e lanes never touch it — Playwright boots the main lane on `:4314` (`ASTROIX_E2E_PORT` in the fixture's dev script) and the npm-pack lane on `:4313
|
|
42
|
+
The owner's manual smoke owns `:4312` (`bun run smoke`); the e2e lanes never touch it — Playwright boots the main lane on `:4314` (`ASTROIX_E2E_PORT` in the fixture's dev script) and the npm-pack lane on `:4313` (`ASTROIX_E2E_PACK_PORT`); both ports stay canonical for CI, while parallel local lanes override the pair per worktree (#120) so sibling checkouts never race for — or adopt — each other's dev servers. Both lanes always boot their own servers (`reuseExistingServer: false`), and the fixture dev script runs astro with `--ignore-lock` — astro's per-project single-server guard would otherwise refuse the e2e instance while the owner's smoke server runs; both paths own their lifecycle externally (the smoke script pre-checks its port, Playwright kills its own servers).
|
|
43
43
|
|
|
44
44
|
### Definition of done (POC)
|
|
45
45
|
|