@agoric/stat-logger 0.4.29 → 0.4.30-upgrade-23-dev-bd79330.0.bd79330

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/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-upgrade-23-dev-bd79330.0.bd79330",
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": "bd79330f78dae2faf9cc3d8b10063567700da07b"
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) || '.';