Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Mar 17, 2024
1 parent eac6db0 commit 855aa68
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/dynamodb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ import { exists } from './utils'
import type { Config } from './config'
import { config } from './config'

const debug = Debug('dynamodb-local')
const JARNAME = 'DynamoDBLocal.jar'

const runningProcesses: { [port: number]: ChildProcess } = {}

interface LaunchOptions {
/**
* The port to run the local DynamoDB instance on
Expand Down Expand Up @@ -44,6 +39,10 @@ interface LaunchOptions {
javaOpts?: string
}

const debug = Debug('dynamodb-local')
const JARNAME = 'DynamoDBLocal.jar'
const runningProcesses: { [port: number]: ChildProcess } = {}

export const dynamoDb = {
/**
* Launches a new DynamoDBLocal process
Expand Down

0 comments on commit 855aa68

Please sign in to comment.