liquibase / node-liquibase

Node.js wrap for Liquibase
MIT License
32 stars 15 forks source link

Package name #46

Closed OperationalFallacy closed 2 years ago

OperationalFallacy commented 2 years ago

Hi,

I've installed package with npm i liquibase, however in the README example the import is node-liquibase: const Liquibase = require('node-liquibase').Liquibase; - which fails with Cannot find module 'liquibase-node'

Is it simply because of the cloned repo and old readme?

tabuckner commented 2 years ago

@OperationalFallacy You're totally right, it looks like there are some typos in the readme.

Liquibase = require('liquibase').Liquibase; should work.

Just opened a PR to resolve this.