@agnostack/env 2.0.0-canary.1 → 2.0.0-canary.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 +13 -0
  2. package/package.json +14 -18
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # [2.0.0-canary.2](https://github.com/[secure]/env/compare/v2.0.0-canary.1...v2.0.0-canary.2) (2026-08-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * drop the deprecated dependency tail from the release toolchain ([d9dcd27](https://github.com/[secure]/env/commit/d9dcd27e191f9420db8eb4b081899692fa6b6f29))
7
+ * pin peer installs off and stop typecheck from being able to emit ([0c66682](https://github.com/[secure]/env/commit/0c666829b8174cdccad42c43c453a531a14873cc))
8
+
9
+
10
+ ### Features
11
+
12
+ * migrate from yarn to pnpm ([faedf1c](https://github.com/[secure]/env/commit/faedf1cfdbd82910cec5acd264a53fa0e1028b21))
13
+
1
14
  # [2.0.0-canary.1](https://github.com/[secure]/env/compare/v1.3.0...v2.0.0-canary.1) (2026-08-16)
2
15
 
3
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnostack/env",
3
- "version": "2.0.0-canary.1",
3
+ "version": "2.0.0-canary.2",
4
4
  "author": "agnoStack Dev <developers@agnostack.com> (https://agnostack.com)",
5
5
  "owner": "agnoStack",
6
6
  "description": "Please contact agnoStack via info@agnostack.com for any questions",
@@ -39,21 +39,20 @@
39
39
  "node": ">=22.x"
40
40
  },
41
41
  "scripts": {
42
- "tsc": "npx -p typescript tsc",
43
- "watch": "yarn tsc -p tsconfig.build.json -w",
44
- "prebuild": "yarn tsc -b tsconfig.build.json --clean && node scripts/clean.mjs dist _storage",
45
- "build": "yarn tsc -p tsconfig.build.json && yarn tsc -p tsconfig.esm.json && node scripts/write-esm-pkg.mjs",
42
+ "watch": "tsc -p tsconfig.build.json -w",
43
+ "prebuild": "tsc -b tsconfig.build.json --clean && node scripts/clean.mjs dist _storage",
44
+ "build": "tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json && node scripts/write-esm-pkg.mjs",
46
45
  "clean": "node scripts/clean.mjs dist node_modules _storage",
47
- "clean:install": "yarn clean && yarn install --force",
46
+ "clean:install": "pnpm clean && pnpm install --force",
48
47
  "lint:fix": "eslint . --fix",
49
48
  "lint": "eslint .",
50
- "typecheck": "yarn tsc",
49
+ "typecheck": "tsc --noEmit",
51
50
  "verify:dist": "node scripts/verify-dist.mjs",
52
51
  "test:watch": "vitest",
53
52
  "test": "vitest run",
54
53
  "release": "semantic-release",
55
- "release:debug": "yarn release --debug",
56
- "prepublishOnly": "yarn verify:dist",
54
+ "release:debug": "pnpm release --debug",
55
+ "prepublishOnly": "node scripts/verify-dist.mjs",
57
56
  "prepare": "husky"
58
57
  },
59
58
  "lint-staged": {
@@ -63,14 +62,11 @@
63
62
  },
64
63
  "sideEffects": false,
65
64
  "devDependencies": {
66
- "@commitlint/cli": "19.x",
67
- "@commitlint/config-conventional": "19.x",
65
+ "@commitlint/cli": "21.x",
66
+ "@commitlint/config-conventional": "21.x",
68
67
  "@eslint/js": "9.x",
69
- "@semantic-release/changelog": "6.0.3",
70
- "@semantic-release/git": "10.0.1",
71
- "@semantic-release/github": "11.x",
72
- "@semantic-release/npm": "12.x",
73
- "@semantic-release/release-notes-generator": "14.x",
68
+ "@semantic-release/changelog": "7.x",
69
+ "@semantic-release/git": "11.x",
74
70
  "@types/node": "22.x",
75
71
  "@typescript-eslint/eslint-plugin": "8.x",
76
72
  "@typescript-eslint/parser": "8.x",
@@ -78,7 +74,7 @@
78
74
  "eslint-plugin-import": "2.x",
79
75
  "globals": "16.x",
80
76
  "husky": "9.x",
81
- "lint-staged": "15.x",
77
+ "lint-staged": "17.x",
82
78
  "semantic-release": "25.x",
83
79
  "typescript": "5.9.3",
84
80
  "vitest": "3.x"
@@ -86,5 +82,5 @@
86
82
  "publishConfig": {
87
83
  "access": "public"
88
84
  },
89
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
85
+ "packageManager": "pnpm@9.15.4"
90
86
  }