@lancedb/lancedb 0.14.0 → 0.14.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -9
- package/DEVELOPMENT.md +0 -42
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"vector database",
|
|
11
11
|
"ann"
|
|
12
12
|
],
|
|
13
|
-
"version": "0.14.0",
|
|
14
13
|
"private": false,
|
|
14
|
+
"version": "0.14.1-beta.0",
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": "./dist/index.js",
|
|
@@ -98,14 +98,14 @@
|
|
|
98
98
|
"reflect-metadata": "^0.2.2"
|
|
99
99
|
},
|
|
100
100
|
"optionalDependencies": {
|
|
101
|
-
"@lancedb/lancedb-darwin-x64": "0.14.0",
|
|
102
|
-
"@lancedb/lancedb-darwin-arm64": "0.14.0",
|
|
103
|
-
"@lancedb/lancedb-linux-x64-gnu": "0.14.0",
|
|
104
|
-
"@lancedb/lancedb-linux-arm64-gnu": "0.14.0",
|
|
105
|
-
"@lancedb/lancedb-linux-x64-musl": "0.14.0",
|
|
106
|
-
"@lancedb/lancedb-linux-arm64-musl": "0.14.0",
|
|
107
|
-
"@lancedb/lancedb-win32-x64-msvc": "0.14.0",
|
|
108
|
-
"@lancedb/lancedb-win32-arm64-msvc": "0.14.0"
|
|
101
|
+
"@lancedb/lancedb-darwin-x64": "0.14.1-beta.0",
|
|
102
|
+
"@lancedb/lancedb-darwin-arm64": "0.14.1-beta.0",
|
|
103
|
+
"@lancedb/lancedb-linux-x64-gnu": "0.14.1-beta.0",
|
|
104
|
+
"@lancedb/lancedb-linux-arm64-gnu": "0.14.1-beta.0",
|
|
105
|
+
"@lancedb/lancedb-linux-x64-musl": "0.14.1-beta.0",
|
|
106
|
+
"@lancedb/lancedb-linux-arm64-musl": "0.14.1-beta.0",
|
|
107
|
+
"@lancedb/lancedb-win32-x64-msvc": "0.14.1-beta.0",
|
|
108
|
+
"@lancedb/lancedb-win32-arm64-msvc": "0.14.1-beta.0"
|
|
109
109
|
},
|
|
110
110
|
"peerDependencies": {
|
|
111
111
|
"apache-arrow": ">=13.0.0 <=17.0.0"
|
package/DEVELOPMENT.md
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# Development
|
|
2
|
-
|
|
3
|
-
```sh
|
|
4
|
-
npm run build
|
|
5
|
-
npm run test
|
|
6
|
-
```
|
|
7
|
-
|
|
8
|
-
## Running lint / format
|
|
9
|
-
|
|
10
|
-
LanceDb uses [biome](https://biomejs.dev/) for linting and formatting. if you are using VSCode you will need to install the official [Biome](https://marketplace.visualstudio.com/items?itemName=biomejs.biome) extension.
|
|
11
|
-
To manually lint your code you can run:
|
|
12
|
-
|
|
13
|
-
```sh
|
|
14
|
-
npm run lint
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
to automatically fix all fixable issues:
|
|
18
|
-
|
|
19
|
-
```sh
|
|
20
|
-
npm run lint-fix
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
If you do not have your workspace root set to the `nodejs` directory, unfortunately the extension will not work. You can still run the linting and formatting commands manually.
|
|
24
|
-
|
|
25
|
-
## Generating docs
|
|
26
|
-
|
|
27
|
-
```sh
|
|
28
|
-
npm run docs
|
|
29
|
-
|
|
30
|
-
cd ../docs
|
|
31
|
-
# Asssume the virtual environment was created
|
|
32
|
-
# python3 -m venv venv
|
|
33
|
-
# pip install -r requirements.txt
|
|
34
|
-
. ./venv/bin/activate
|
|
35
|
-
mkdocs build
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## Developing examples
|
|
39
|
-
|
|
40
|
-
The `examples` directory contains examples that are shown in the docs. They
|
|
41
|
-
are their own typescript package with their own scripts.
|
|
42
|
-
|