webanvil 0.0.20 → 0.0.21

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 CHANGED
@@ -207,9 +207,9 @@ to open it. The package build still owns `--out-dir`.
207
207
 
208
208
  Set `storybook.test: false` to exclude Storybook stories, including `play`
209
209
  functions, from `wa test`. Projects running Storybook browser tests must install
210
- Chromium for WebAnvil's Playwright 1.58.2 toolchain. Run
211
- `npx playwright@1.58.2 install chromium`, or add
212
- `@playwright/browser-chromium@1.58.2` to the project and allow its install script.
210
+ Chromium for WebAnvil's Playwright 1.60.0 toolchain. Run
211
+ `npx playwright@1.60.0 install chromium`, or add
212
+ `@playwright/browser-chromium@1.60.0` to the project and allow its install script.
213
213
  Storybook tests use WebAnvil's bundled Vitest and browser provider as one
214
214
  version-matched toolchain.
215
215
 
@@ -352,7 +352,7 @@ invalid package identity, or is outside the supported range fails first.
352
352
  | -------------------------- | ------------------------------------ | ----------------------- |
353
353
  | Vite | `>=8.1.5 <9` | `8.1.5` |
354
354
  | Vitest | Bundled only | `4.1.11` |
355
- | Playwright Test | Bundled only | `1.58.2` |
355
+ | Playwright Test | Bundled only | `1.60.0` |
356
356
  | Storybook | `>=10.5.9 <11` | `10.5.9` |
357
357
  | Rolldown | `>=1.2.0 <2` | `1.2.0` |
358
358
  | Oxlint | `>=1.75.0 <2` | `1.75.0` |
@@ -561,10 +561,10 @@ chromium` works without a Playwright config after the project installs Chromium.
561
561
  Use `--headed`, `--debug`, or `--ui` for an interactive run. WebAnvil ships
562
562
  Playwright Test, while the project supplies the browser binary and its system
563
563
  libraries. Install the matching browser locally with
564
- `npx playwright@1.58.2 install chromium`. On Linux CI, install both with:
564
+ `npx playwright@1.60.0 install chromium`. On Linux CI, install both with:
565
565
 
566
566
  ```sh
567
- npx playwright@1.58.2 install --with-deps chromium
567
+ npx playwright@1.60.0 install --with-deps chromium
568
568
  ```
569
569
 
570
570
  For advanced configuration, add `playwright.config.*`. WebAnvil then delegates
@@ -105,7 +105,7 @@ const supportedTools = {
105
105
  },
106
106
  playwright: {
107
107
  packageName: "@playwright/test",
108
- range: ">=1.58.2 <2",
108
+ range: ">=1.60.0 <2",
109
109
  bin: "playwright",
110
110
  allowProjectOverride: false
111
111
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webanvil",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "A unified CLI for building, testing, linting, formatting, and type-checking JavaScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "build-tool",
@@ -120,7 +120,7 @@
120
120
  "check": "npm run typecheck && npm run lint && npm run format:check && npm test"
121
121
  },
122
122
  "dependencies": {
123
- "@playwright/test": "1.58.2",
123
+ "@playwright/test": "1.60.0",
124
124
  "@storybook/addon-vitest": "10.5.9",
125
125
  "@storybook/react-vite": "10.5.9",
126
126
  "@storybook/svelte-vite": "10.5.9",
@@ -144,7 +144,7 @@
144
144
  "oxlint": "1.75.0",
145
145
  "pathe": "^2.0.3",
146
146
  "pkg-types": "^2.3.1",
147
- "playwright": "1.58.2",
147
+ "playwright": "1.60.0",
148
148
  "rolldown": "1.2.0",
149
149
  "rolldown-plugin-dts": "0.27.13",
150
150
  "semver": "7.8.5",