Skip to content

Commit

Permalink
Merge pull request #337 from superfaceai/feat/export_node_sandbox
Browse files Browse the repository at this point in the history
Export NodeSandbox from node module
  • Loading branch information
freaz authored Feb 24, 2023
2 parents e689595 + 143d7b8 commit f2e50bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import { NodeEnvironment } from '../environment';
import { NodeFetch } from '../fetch';
import { NodeFileSystem } from '../filesystem';
import { NodeLogger } from '../logger';
import { NodeSandbox } from '../sandbox/sandbox.node';
import { NodeSandbox } from '../sandbox';
import { NodeTimers } from '../timers';

const resolveSuperJson = (
Expand Down
1 change: 1 addition & 0 deletions src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export * from './environment';
export * from './fetch';
export * from './filesystem';
export * from './logger';
export * from './sandbox';
export * from './timers';
1 change: 1 addition & 0 deletions src/node/sandbox/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './sandbox.node';

0 comments on commit f2e50bc

Please sign in to comment.