Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 504 Bytes

BREAKING_CHANGES.md

File metadata and controls

35 lines (31 loc) · 504 Bytes

breaking changes

1.0.10

start

before

const node = await new Node()

now

const node = await new Node()
// gives time to setup things...
await node.start()

1.1.0

autoStart

before

const node = await new Node()
// gives time to setup things...
await node.start()

now

const node = await new Node()

or

const node = await new Node({autoStart: false}) // defaults to true
// gives time to setup things...
await node.start()