Skip to content

Commit

Permalink
fix: min changes to get previous commit working
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Jan 26, 2024
1 parent 88be816 commit ac51664
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"dependencies": {
"@agoric/assert": "^0.6.0",
"@agoric/base-zone": "^0.1.0",
"@endo/common": "^1.0.2",
"@endo/far": "^1.0.2",
"@endo/init": "^1.0.2",
"@endo/marshal": "^1.1.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/internal/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ export * from './debug.js';
export * from './utils.js';
export * from './method-tools.js';
export * from './typeGuards.js';

export { objectMap } from '@endo/common/object-map.js';
export { fromUniqueEntries } from '@endo/common/from-unique-entries.js';
8 changes: 6 additions & 2 deletions packages/store/src/stores/scalarWeakMapStore.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Far, assertPassable, passStyleOf } from '@endo/pass-style';
import { getCopyMapEntries, mustMatch, assertPattern } from '@endo/patterns';
import { isCopyMap } from './store-utils.js';
import {
getCopyMapEntries,
mustMatch,
assertPattern,
isCopyMap,
} from '@endo/patterns';

const { quote: q, Fail } = assert;

Expand Down
8 changes: 6 additions & 2 deletions packages/store/src/stores/scalarWeakSetStore.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Far, passStyleOf } from '@endo/pass-style';
import { getCopySetKeys, mustMatch, assertPattern } from '@endo/patterns';
import { isCopySet } from './store-utils.js';
import {
getCopySetKeys,
mustMatch,
assertPattern,
isCopySet,
} from '@endo/patterns';

const { quote: q, Fail } = assert;

Expand Down
2 changes: 2 additions & 0 deletions packages/store/src/stores/store-utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { Far } from '@endo/marshal';

const { quote: q, Fail } = assert;

/** @typedef {import('@endo/marshal').RankCompare} RankCompare */

/**
Expand Down

0 comments on commit ac51664

Please sign in to comment.