Liquibase for Nodejs Cassandra classpath is not working

Hi,
I am trying to perform updates on cassandra using liquibase but it is giving me error while creating DatabaseChangeLog table. Below is my nodejs file

const Liquibase = require(‘liquibase’).Liquibase;

const myConfig = {
changeLogFile: ‘./changelog.xml’,
url: ‘jdbc:cassandra://localhost:9042/cycling?compliancemode=Liquibase&localDatacenter=datacenter1’,
driver: ‘com.ing.data.cassandra.jdbc.CassandraDriver’,
classpath: ‘/Users/admin/Downloads/lib/liquibase-cassandra-4.28.0.jar:/Users/admin/Downloads/lib/cassandra-jdbc-wrapper-4.13.0-bundle.jar’
}

const instTs = new Liquibase(myConfig);

instTs.status();

If I manually copy the jar files inside lib folder of node_module liquibase then it works. I think some issue with classpath.
Can I get help here