File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,7 @@ const p = require('path')
3
3
const os = require ( 'os' )
4
4
const fs = require ( 'fs' ) . promises
5
5
const repl = require ( 'repl' )
6
- const { spawn } = require ( 'child_process' )
7
6
const minimist = require ( 'minimist' )
8
- const ram = require ( 'random-access-memory' )
9
7
10
8
const { Server, Client } = require ( '../' )
11
9
const { migrate : migrateFromDaemon , isMigrated } = require ( '@hyperspace/migration-tool' )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const { spawn } = require('child_process')
4
4
const minimist = require ( 'minimist' )
5
5
const ram = require ( 'random-access-memory' )
6
6
7
- const { Server, Client } = require ( '../' )
7
+ const { Server } = require ( '../' )
8
8
9
9
const argv = minimist ( process . argv . slice ( 2 ) , {
10
10
'--' : true
@@ -23,7 +23,6 @@ if (argv.help) {
23
23
}
24
24
main ( ) . catch ( onerror )
25
25
26
-
27
26
async function main ( ) {
28
27
if ( ! argv . _ . length ) throw new Error ( 'Must provide a script for the simulator to run.' )
29
28
const scriptPath = p . resolve ( argv . _ [ 0 ] )
You can’t perform that action at this time.
0 commit comments