schema-components 1.3.1 → 1.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.3.2](https://github.com/Mearman/schema-components/compare/v1.3.1...v1.3.2) (2026-05-14)
2
+
3
+ ### Refactoring
4
+
5
+ * migrate all tests from node:test to vitest ([457ff24](https://github.com/Mearman/schema-components/commit/457ff24ab667330848d3ddf8b578211dbfc31f34))
6
+
1
7
  ## [1.3.1](https://github.com/Mearman/schema-components/compare/v1.3.0...v1.3.1) (2026-05-14)
2
8
 
3
9
  ### CI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schema-components",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "React components that render UI from Zod schemas, JSON Schema, and OpenAPI documents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -39,9 +39,9 @@
39
39
  "_typecheck": "tsc --noEmit",
40
40
  "_lint": "eslint --cache 'src/**/*.{ts,tsx}'",
41
41
  "_lint:fix": "eslint --cache --fix 'src/**/*.{ts,tsx}'",
42
- "_test": "node --test 'tests/**/*.unit.test.ts' 'tests/**/*.integration.test.ts'",
43
- "_test:ssr": "node --test 'tests/ssr.e2e.test.ts'",
44
- "_test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=75 --test-coverage-functions=80 --test-coverage-include='src/**/*.ts' --test-coverage-include='src/**/*.tsx' 'tests/**/*.unit.test.ts' 'tests/**/*.integration.test.ts'",
42
+ "_test": "vitest run --project=unit",
43
+ "_test:e2e": "vitest run --project=e2e",
44
+ "_test:coverage": "vitest run --project=unit --coverage",
45
45
  "_build": "tsdown && cp src/html/styles.css dist/html/styles.css",
46
46
  "typecheck": "turbo run _typecheck",
47
47
  "lint": "turbo run _lint",