@agoric/stat-logger 0.4.29 → 0.4.30-u23.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.4.30-u23.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/stat-logger@0.4.28...@agoric/stat-logger@0.4.30-u23.0) (2026-04-27)
7
+
8
+ **Note:** Version bump only for package @agoric/stat-logger
9
+
6
10
  ## [0.4.29](https://github.com/Agoric/agoric-sdk/compare/@agoric/stat-logger@0.4.29-u22.1...@agoric/stat-logger@0.4.29) (2026-04-02)
7
11
 
8
12
  **Note:** Version bump only for package @agoric/stat-logger
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/stat-logger",
3
- "version": "0.4.29",
3
+ "version": "0.4.30-u23.0",
4
4
  "description": "Simple library for logging and graphing performance statistics",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -13,7 +13,7 @@
13
13
  "test:xs": "exit 0",
14
14
  "lint": "yarn run -T run-s --continue-on-error 'lint:*'",
15
15
  "lint-fix": "yarn lint:eslint --fix",
16
- "lint:eslint": "yarn run -T eslint ."
16
+ "lint:eslint": "node ../../scripts/eslint-repo.mjs ."
17
17
  },
18
18
  "dependencies": {
19
19
  "@endo/errors": "^1.2.13"
@@ -43,5 +43,5 @@
43
43
  "engines": {
44
44
  "node": "^20.9 || ^22.11"
45
45
  },
46
- "gitHead": "0922d0447ab8fae9d2d87415964403330b5ca313"
46
+ "gitHead": "1147be15b0704de17204d04e2407fa3192b98a1c"
47
47
  }
package/src/statGraph.js CHANGED
@@ -1,6 +1,7 @@
1
1
  /* eslint-env node */
2
- import fs from 'fs';
3
- import path from 'path';
2
+ // @ts-nocheck unsupported module
3
+ import fs from 'node:fs';
4
+ import path from 'node:path';
4
5
 
5
6
  import { Fail } from '@endo/errors';
6
7
 
package/src/statLogger.js CHANGED
@@ -1,5 +1,5 @@
1
- import fs from 'fs';
2
- import process from 'process';
1
+ import fs from 'node:fs';
2
+ import process from 'node:process';
3
3
 
4
4
  export function makeStatLogger(tag, headers, options) {
5
5
  const dir = (options && options.dir) || '.';