@tmrp/env 0.1.4 → 0.1.6

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 +7 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -566,6 +566,13 @@ Coverage thresholds are 100% for statements, branches, functions, and lines.
566
566
  pnpm build
567
567
  ```
568
568
 
569
+ ### Releasing
570
+
571
+ This package uses [Changesets](https://github.com/changesets/changesets).
572
+ Versioning and npm publishing are automated — include a changeset with your PR
573
+ (`pnpm changeset`) and the release flow handles the rest. See
574
+ [CONTRIBUTING.md](CONTRIBUTING.md) for the full workflow.
575
+
569
576
  ## Project Structure
570
577
 
571
578
  ```txt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmrp/env",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Type-safe environment variable parsing, powered by Zod.",
5
5
  "keywords": [
6
6
  "env",
@@ -77,6 +77,7 @@
77
77
  "effect": "^3.21.2"
78
78
  },
79
79
  "devDependencies": {
80
+ "@changesets/changelog-github": "^0.7.0",
80
81
  "@changesets/cli": "^2.31.0",
81
82
  "@eslint/js": "^10.0.1",
82
83
  "@tsconfig/recommended": "^1.0.13",
@@ -86,11 +87,11 @@
86
87
  "eslint": "^10.3.0",
87
88
  "eslint-plugin-perfectionist": "^5.9.0",
88
89
  "eslint-plugin-unused-imports": "^4.4.1",
89
- "globals": "^17.6.0",
90
+ "globals": "^17.7.0",
90
91
  "prettier": "^3.8.3",
91
92
  "tsx": "^4.21.0",
92
93
  "typescript": "^6.0.3",
93
- "typescript-eslint": "^8.59.1",
94
+ "typescript-eslint": "^8.62.0",
94
95
  "vitest": "^4.1.5",
95
96
  "zod": "^4.4.2"
96
97
  },
@@ -102,6 +103,7 @@
102
103
  },
103
104
  "scripts": {
104
105
  "build": "tsc -p tsconfig.build.json",
106
+ "changeset": "changeset",
105
107
  "clean": "rm -rf dist",
106
108
  "format": "prettier --write .",
107
109
  "lint": "eslint .",
@@ -112,6 +114,7 @@
112
114
  "test:runtime:deno": "deno run --no-lock --allow-env --node-modules-dir=auto scripts/runtime-smoke/deno.mjs",
113
115
  "test:runtime:node": "node scripts/runtime-smoke/node.mjs",
114
116
  "typecheck": "tsc --noEmit",
117
+ "version:packages": "changeset version && pnpm install --lockfile-only && prettier --write \"**/CHANGELOG.md\"",
115
118
  "release": "changeset publish"
116
119
  }
117
120
  }