Skip to content

Commit 8c192ce

Browse files
cleanup
1 parent 33f6e19 commit 8c192ce

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

packages/node/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,24 @@ or download sqlite3 and PowerSync binaries.
2828

2929
### Common Installation Issues
3030

31-
The better-sqlite package requires native compilation, which depends on certain system tools. This compilation process is handled by node-gyp and may fail if required dependencies are missing or misconfigured.
31+
The `better-sqlite` package requires native compilation, which depends on certain system tools. This compilation process is handled by `node-gyp` and may fail if required dependencies are missing or misconfigured.
3232

3333
#### Node-gyp Version Conflicts
3434

35-
better-sqlite depends on node-gyp@^11, but some project configurations may introduce multiple versions of node-gyp, potentially causing build issues.
35+
`better-sqlite` depends on `node-gyp@^11`, but some project configurations may introduce multiple versions of `node-gyp`, potentially causing build issues.
3636

3737
#### Python Dependency Issues
3838

39-
node-gyp requires Python for compilation. If your project uses node-gyp below version 10 and your system has Python 3.12 or later, you may encounter the following error:
39+
`node-gyp` requires Python for compilation. If your project uses `node-gyp` below version `10` and your system has Python `3.12` or later, you may encounter the following error:
4040

4141
```python
4242
ModuleNotFoundError: No module named 'distutils'
4343
```
4444

4545
To resolve this, either:
4646

47-
Upgrade `node-gyp` to version 10 or later.
48-
49-
Install Python [setuptools](https://pypi.org/project/setuptools/), which includes `distutils`.
47+
- Upgrade `node-gyp` to version 10 or later.
48+
- Install Python [setuptools](https://pypi.org/project/setuptools/), which includes `distutils`.
5049

5150
# Getting Started
5251

0 commit comments

Comments
 (0)