@gristlabs/sqlite3 4.1.1-grist.3 → 4.1.1-grist.4
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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# Quick instructions for Grist devs
|
|
2
|
+
|
|
3
|
+
1. Run `make` to install dependencies and build. Delete the `package-lock.json` which this creates.
|
|
4
|
+
2. Possibly rename `build-tmp-napi-v3` or something to `build`. Don't know why it isn't just `build` and if this is system-specific.
|
|
5
|
+
3. Run `npm run rebuild-tests` which puts files in `test/cpp`, particularly `marshal.node`.
|
|
6
|
+
4. Run `npm test`. A failure in the test `respects ELECTRON_VERSION` is OK.
|
|
7
|
+
5. Maybe run `npm pack`? Not sure if needed.
|
|
8
|
+
6. Run `npm publish`.
|
|
9
|
+
|
|
10
|
+
----
|
|
11
|
+
----
|
|
12
|
+
|
|
1
13
|
Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js](http://nodejs.org/).
|
|
2
14
|
|
|
3
15
|
[](https://nodei.co/npm/sqlite3/)
|
package/deps/sqlite3.gyp
CHANGED
|
@@ -90,7 +90,6 @@
|
|
|
90
90
|
'SQLITE_ENABLE_JSON1',
|
|
91
91
|
'SQLITE_ENABLE_RTREE',
|
|
92
92
|
'SQLITE_ENABLE_DBSTAT_VTAB=1',
|
|
93
|
-
'SQLITE_MAX_ATTACHED=0'
|
|
94
93
|
],
|
|
95
94
|
},
|
|
96
95
|
'cflags_cc': [
|
|
@@ -106,7 +105,6 @@
|
|
|
106
105
|
'SQLITE_ENABLE_JSON1',
|
|
107
106
|
'SQLITE_ENABLE_RTREE',
|
|
108
107
|
'SQLITE_ENABLE_DBSTAT_VTAB=1',
|
|
109
|
-
'SQLITE_MAX_ATTACHED=0'
|
|
110
108
|
],
|
|
111
109
|
'export_dependent_settings': [
|
|
112
110
|
'action_before_build',
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|