hillclimb 0.1.5 → 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/dist/cli.js +1 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -174,11 +174,10 @@ function pacificParts(date) {
174
174
  hour: "2-digit",
175
175
  minute: "2-digit",
176
176
  second: "2-digit",
177
- hour12: false
177
+ hourCycle: "h23"
178
178
  }).formatToParts(date);
179
179
  const lookup = {};
180
180
  for (const p7 of parts) if (p7.type !== "literal") lookup[p7.type] = p7.value;
181
- if (lookup.hour === "24") lookup.hour = "00";
182
181
  return {
183
182
  year: lookup.year ?? "0000",
184
183
  month: lookup.month ?? "00",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hillclimb",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Extract and export AI coding tool logs grouped by repo",
5
5
  "license": "MIT",
6
6
  "type": "module",