@drakulavich/oura-cli 0.4.2 → 0.4.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/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.3] - 2026-05-13
10
+
11
+ ### Changed
12
+ - Type-checker upgraded to TypeScript 7 via `@typescript/native-preview` (the
13
+ Go-based `tsgo` binary). `typescript` devDep bumped to `^6.0.3` (current
14
+ stable). CI now runs `bunx tsgo --noEmit` instead of `bunx tsc --noEmit`.
15
+ - `tsconfig.json` declares `types: ["bun", "node"]` explicitly so `tsgo`
16
+ resolves ambient globals (`process`, `import.meta.dir`, `bun:test`).
17
+
9
18
  ## [0.4.2] - 2026-05-13
10
19
 
11
20
  ### Added
package/dist/index.js CHANGED
@@ -2631,7 +2631,7 @@ function normalizeArgv(argv) {
2631
2631
  }
2632
2632
 
2633
2633
  // src/index.ts
2634
- var VERSION = "0.4.2";
2634
+ var VERSION = "0.4.3";
2635
2635
  if (process.argv.includes("--no-color") || process.env.NO_COLOR) {
2636
2636
  source_default.level = 0;
2637
2637
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drakulavich/oura-cli",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Oura Ring CLI — query and analyze Oura Ring health data from the command line, designed for humans and AI agents.",
5
5
  "keywords": [
6
6
  "oura",
@@ -57,8 +57,9 @@
57
57
  "devDependencies": {
58
58
  "@types/bun": "^1.3.14",
59
59
  "@types/node": "^25.3.3",
60
+ "@typescript/native-preview": "^7.0.0-dev.20260513.1",
60
61
  "ajv": "^8.20.0",
61
62
  "ajv-formats": "^3.0.1",
62
- "typescript": "^5.9.3"
63
+ "typescript": "^6.0.3"
63
64
  }
64
65
  }