recappi 0.1.4 → 0.1.6
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/dist/index.js +706 -448
- package/dist/index.js.map +1 -1
- package/helpers/README.md +12 -0
- package/helpers/darwin-arm64/.gitkeep +1 -0
- package/helpers/darwin-x64/.gitkeep +1 -0
- package/helpers/win32-arm64/.gitkeep +1 -0
- package/helpers/win32-x64/.gitkeep +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
This directory is reserved for native recording helpers bundled in the npm
|
|
2
|
+
package.
|
|
3
|
+
|
|
4
|
+
The CLI selects helpers by `process.platform` and `process.arch`:
|
|
5
|
+
|
|
6
|
+
- `darwin-arm64/RecappiMiniSidecar`
|
|
7
|
+
- `darwin-x64/RecappiMiniSidecar`
|
|
8
|
+
- `win32-x64/RecappiMiniSidecar.exe`
|
|
9
|
+
- `win32-arm64/RecappiMiniSidecar.exe`
|
|
10
|
+
|
|
11
|
+
Development builds can override helper resolution with `--sidecar-command` or
|
|
12
|
+
`RECAPPI_MINI_SIDECAR`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED