@drzl/validation-core 0.3.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -13,6 +13,20 @@ Shared interfaces and helpers used by validation generators.
13
13
 
14
14
  </div>
15
15
 
16
+ ## 💚 Sponsor DRZL
17
+
18
+ <div align="center">
19
+
20
+ <strong>DRZL is crafted nights & weekends. Sponsorships keep the generators fast, tested, and free.</strong>
21
+
22
+ [![Sponsor DRZL](https://img.shields.io/badge/GitHub%20Sponsors-Support%20the%20project-ff69b4?logo=github)](https://github.com/sponsors/omar-dulaimi)
23
+
24
+ </div>
25
+
26
+ - Every dollar speeds up CI hardware and offsets long test runs on my aging laptop.
27
+ - Sponsors get roadmap input and priority responses in GitHub Issues.
28
+ - Prefer a quick overview? Check `docs/sponsor.md` for the current goals and thank-yous.
29
+
16
30
  ## Exports (essentials)
17
31
 
18
32
  - ValidationLibrary: `'zod' | 'valibot' | 'arktype'`
@@ -23,4 +37,3 @@ Shared interfaces and helpers used by validation generators.
23
37
  - Helpers
24
38
  - `insertColumns(table)`, `updateColumns(table)`, `selectColumns(table)`
25
39
  - `formatCode(code, filePath, formatOpts)`
26
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drzl/validation-core",
3
- "version": "0.3.0",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  ],
12
12
  "sideEffects": false,
13
13
  "dependencies": {
14
- "@drzl/analyzer": "^0.3.0"
14
+ "@drzl/analyzer": "^1.2.0"
15
15
  },
16
16
  "devDependencies": {
17
17
  "tsup": "^8.5.0",
@@ -30,6 +30,10 @@
30
30
  "url": "https://github.com/use-drzl/drzl",
31
31
  "directory": "packages/validation-core"
32
32
  },
33
+ "funding": {
34
+ "type": "github",
35
+ "url": "https://github.com/sponsors/omar-dulaimi"
36
+ },
33
37
  "scripts": {
34
38
  "build": "tsup src/index.ts --dts --format esm,cjs",
35
39
  "test": "vitest run"