@agoric/time 0.4.0 → 0.4.1-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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/timeMath.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/time",
3
- "version": "0.4.0",
3
+ "version": "0.4.1-upgrade-23-dev-bd79330.0.bd79330",
4
4
  "description": "Timestamps, time math, timer service API definition",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -14,7 +14,7 @@
14
14
  "test:xs": "exit 0",
15
15
  "lint": "yarn run -T run-s --continue-on-error 'lint:*'",
16
16
  "lint:types": "yarn run -T tsc",
17
- "lint:eslint": "yarn run -T eslint .",
17
+ "lint:eslint": "node ../../scripts/eslint-repo.mjs .",
18
18
  "lint-fix": "yarn lint:eslint --fix"
19
19
  },
20
20
  "repository": {
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
33
33
  "dependencies": {
34
- "@agoric/store": "0.10.0",
34
+ "@agoric/store": "0.10.1-upgrade-23-dev-bd79330.0.bd79330",
35
35
  "@endo/errors": "^1.2.13",
36
36
  "@endo/nat": "^5.1.3",
37
37
  "@endo/patterns": "^1.7.0"
@@ -39,7 +39,7 @@
39
39
  "devDependencies": {
40
40
  "@endo/far": "^1.1.14",
41
41
  "@endo/init": "^1.1.12",
42
- "ava": "^5.3.0"
42
+ "ava": "^6.4.1"
43
43
  },
44
44
  "ava": {
45
45
  "require": [
@@ -60,5 +60,5 @@
60
60
  "typeCoverage": {
61
61
  "atLeast": 88.75
62
62
  },
63
- "gitHead": "0922d0447ab8fae9d2d87415964403330b5ca313"
63
+ "gitHead": "bd79330f78dae2faf9cc3d8b10063567700da07b"
64
64
  }
package/src/timeMath.js CHANGED
@@ -5,6 +5,7 @@ import { RelativeTimeRecordShape, TimestampRecordShape } from './typeGuards.js';
5
5
 
6
6
  /**
7
7
  * @import {RelativeTime, RelativeTimeValue, TimerBrand, TimeMathType, Timestamp, TimestampRecord, TimestampValue} from './types.js';
8
+ * @import {RankComparison} from '@endo/marshal';
8
9
  */
9
10
 
10
11
  /**
@@ -194,7 +195,7 @@ const modRelRel = (rel, step) =>
194
195
  * @param {Timestamp | RelativeTime} right
195
196
  * @param {bigint} v1
196
197
  * @param {bigint} v2
197
- * @returns {import('@endo/marshal').RankComparison}
198
+ * @returns {RankComparison}
198
199
  */
199
200
  const compareValues = (left, right, v1, v2) => {
200
201
  sharedTimerBrand(left, right);