Compare commits

..

3 Commits
v3.3.4 ... main

Author SHA1 Message Date
Fedor Indutny
f90dd065e9 3.3.5
Some checks failed
Test / test (clang, clang++, macos-latest) (push) Has been cancelled
Test / test (gcc, g++, ubuntu-latest) (push) Has been cancelled
Test / test (windows-latest) (push) Has been cancelled
2026-05-26 12:32:59 -07:00
Fedor Indutny
9e947e02ae fix: pnpm build with prebuilds 2026-05-26 12:32:50 -07:00
Fedor Indutny
ef6443f848 fix: linux ci 2026-05-26 12:24:23 -07:00
2 changed files with 3 additions and 4 deletions

View File

@ -30,7 +30,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
with:
version: 10.3.0
version: 10.18.1
- name: Setup node.js
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:

View File

@ -1,7 +1,7 @@
{
"packageManager": "pnpm@10.18.1",
"name": "@signalapp/sqlcipher",
"version": "3.3.4",
"version": "3.3.5",
"description": "A fast N-API-based Node.js addon wrapping sqlcipher and FTS5 segmenting APIs",
"homepage": "http://github.com/signalapp/node-sqlcipher.git",
"license": "AGPL-3.0-only",
@ -36,12 +36,11 @@
},
"scripts": {
"watch": "tsc --watch",
"build": "run-p --print-label build:ts build:esm build:cjs build:addon",
"build": "run-p --print-label build:ts build:esm build:cjs",
"build:ts": "tsc",
"build:esm": "esbuild --target=node20 --define:__dirname=undefined lib/index.ts --outfile=dist/index.mjs",
"build:cjs": "esbuild --target=node20 --define:import.meta.url=undefined lib/index.ts --format=cjs --outfile=dist/index.cjs",
"build:docs": "typedoc lib/index.ts --includeVersion",
"build:addon": "node-gyp build",
"install": "node-gyp-build",
"prebuildify": "prebuildify --strip --napi",
"test": "vitest --coverage --pool threads",