fix(node): add native packages to bump version (#1738)

We weren't bumping the version, so when users downloaded our package
from npm, they were getting the old binaries.
This commit is contained in:
Will Jones
2024-10-08 23:03:53 -06:00
committed by GitHub
parent 8509f73221
commit aff25e3bf9
7 changed files with 842 additions and 647 deletions
+1 -1
View File
@@ -14,6 +14,7 @@
import { describe } from 'mocha'
import * as chai from 'chai'
import { assert } from 'chai'
import * as chaiAsPromised from 'chai-as-promised'
import { v4 as uuidv4 } from 'uuid'
@@ -22,7 +23,6 @@ import { tmpdir } from 'os'
import * as fs from 'fs'
import * as path from 'path'
const assert = chai.assert
chai.use(chaiAsPromised)
describe('LanceDB AWS Integration test', function () {