recappi 0.1.6 → 0.1.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/helpers/README.md CHANGED
@@ -1,5 +1,4 @@
1
- This directory is reserved for native recording helpers bundled in the npm
2
- package.
1
+ This directory contains native recording helpers bundled in the npm package.
3
2
 
4
3
  The CLI selects helpers by `process.platform` and `process.arch`:
5
4
 
@@ -10,3 +9,7 @@ The CLI selects helpers by `process.platform` and `process.arch`:
10
9
 
11
10
  Development builds can override helper resolution with `--sidecar-command` or
12
11
  `RECAPPI_MINI_SIDECAR`.
12
+
13
+ Run `scripts/build-cli-helper.sh` from the repository root before `pnpm pack` or
14
+ `pnpm publish`; `pack:check` fails if the package does not include at least one
15
+ Darwin helper executable.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recappi",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "recappi": "./dist/index.js"
@@ -37,6 +37,7 @@
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsup",
40
+ "build:helper": "../../scripts/build-cli-helper.sh",
40
41
  "test": "vp test",
41
42
  "typecheck": "tsc --noEmit",
42
43
  "check": "pnpm run typecheck && pnpm run test && pnpm run build",