@conform-to/dom 1.19.1 → 1.19.3

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
@@ -7,7 +7,7 @@
7
7
  ╚══════╝ ╚═════╝ ╚═╝ ╚══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
8
8
  ```
9
9
 
10
- Version 1.19.1 / License MIT / Copyright (c) 2026 Edmund Hung
10
+ Version 1.19.3 / License MIT / Copyright (c) 2026 Edmund Hung
11
11
 
12
12
  Progressively enhance HTML forms with React. Build resilient, type-safe forms with no hassle using web standards.
13
13
 
@@ -0,0 +1,4 @@
1
+ export declare const projects: import("vitest/config").UserWorkspaceConfig[];
2
+ declare const _default: import("vite").UserConfig;
3
+ export default _default;
4
+ //# sourceMappingURL=vitest.config.d.ts.map
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "A set of opinionated helpers built on top of the Constraint Validation API",
4
4
  "homepage": "https://conform.guide",
5
5
  "license": "MIT",
6
- "version": "1.19.1",
6
+ "version": "1.19.3",
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/index.mjs",
9
9
  "types": "./dist/index.d.ts",
@@ -56,8 +56,11 @@
56
56
  "@babel/preset-typescript": "^7.20.2",
57
57
  "@rollup/plugin-babel": "^5.3.1",
58
58
  "@rollup/plugin-node-resolve": "^13.3.0",
59
+ "@vitest/browser-playwright": "^4.1.5",
60
+ "playwright": "^1.49.1",
59
61
  "rollup-plugin-copy": "^3.4.0",
60
- "rollup": "^2.79.1"
62
+ "rollup": "^2.79.1",
63
+ "vitest": "^4.1.5"
61
64
  },
62
65
  "scripts": {
63
66
  "build:js": "rollup -c",
@@ -66,6 +69,7 @@
66
69
  "dev:js": "pnpm run build:js --watch",
67
70
  "dev:ts": "pnpm run build:ts --watch",
68
71
  "dev": "pnpm run \"/^dev:.*/\"",
72
+ "test": "vitest",
69
73
  "typecheck": "tsc"
70
74
  }
71
75
  }