sql-kite 1.0.6 → 1.0.7
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/README.md +10 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -164,8 +164,16 @@ SQL Kite runs **entirely on your machine**.
|
|
|
164
164
|
|
|
165
165
|
### Requirements
|
|
166
166
|
|
|
167
|
-
* Node.js 18
|
|
168
|
-
* npm
|
|
167
|
+
* **Node.js 18** (LTS recommended)
|
|
168
|
+
* **npm**
|
|
169
|
+
|
|
170
|
+
> **Important:** SQL Kite uses [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3), a native C++ module. Node.js 20+ may have compatibility issues with the current version. **Node.js 18 LTS is recommended** for the best experience.
|
|
171
|
+
|
|
172
|
+
**Windows users:** If installation fails, you may need native build tools:
|
|
173
|
+
1. Re-run the Node.js installer and check **"Automatically install the necessary tools"**
|
|
174
|
+
2. Or run `C:\Program Files\nodejs\install_tools.bat` to install Python and Visual Studio Build Tools
|
|
175
|
+
|
|
176
|
+
> **No special characters or spaces in your project path** — `node-gyp` may not handle them correctly.
|
|
169
177
|
|
|
170
178
|
### Option 1: Global Installation (Recommended)
|
|
171
179
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sql-kite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "SQL-Kite CLI — Local-first SQLite workspace with branches, migrations and snapshots.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"preferGlobal": true,
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"developer-tools"
|
|
32
32
|
],
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": ">=18"
|
|
34
|
+
"node": ">=18 <=20"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
37
|
"bin/",
|