Skip to content

Commit

Permalink
refactor(SwingSet): unify vat-worker filenames
Browse files Browse the repository at this point in the history
fixes #2202
  • Loading branch information
dckc committed Jan 15, 2021
1 parent bd7d738 commit 81823ec
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/SwingSet/src/kernel/vatManager/factory.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { assert } from '@agoric/assert';
import { assertKnownOptions } from '../../assertOptions';
import { makeLocalVatManagerFactory } from './localVatManager';
import { makeNodeWorkerVatManagerFactory } from './nodeWorker';
import { makeNodeSubprocessFactory } from './worker-subprocess-node';
import { makeLocalVatManagerFactory } from './manager-local';
import { makeNodeWorkerVatManagerFactory } from './manager-nodeworker';
import { makeNodeSubprocessFactory } from './manager-subprocess-node';

export function makeVatManagerFactory({
allVatPowers,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

// eslint-disable-next-line no-global-assign
require = require('esm')(module);
module.exports = require('./nodeWorkerSupervisor');
module.exports = require('./supervisor-nodeworker');

0 comments on commit 81823ec

Please sign in to comment.