@h-rig/isolation-plugin 0.0.6-alpha.157 → 0.0.6-alpha.158
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/src/embedded-native-assets.d.ts +7 -0
- package/dist/src/embedded-native-assets.js +6 -0
- package/dist/src/image-fingerprint-sidecar.d.ts +1 -0
- package/dist/src/image-fingerprint-sidecar.js +515 -0
- package/dist/src/image.d.ts +40 -0
- package/dist/src/image.js +1498 -0
- package/dist/src/index.js +4220 -20
- package/dist/src/isolation/binary-build-worker.d.ts +1 -0
- package/dist/src/isolation/binary-build-worker.js +323 -0
- package/dist/src/isolation/discovery.d.ts +7 -0
- package/dist/src/isolation/discovery.js +477 -0
- package/dist/src/isolation/git-native.d.ts +28 -0
- package/dist/src/isolation/git-native.js +598 -0
- package/dist/src/isolation/home.d.ts +25 -0
- package/dist/src/isolation/home.js +929 -0
- package/dist/src/isolation/index.d.ts +43 -0
- package/dist/src/isolation/index.js +4062 -0
- package/dist/src/isolation/provisioning-env.d.ts +1 -0
- package/dist/src/isolation/provisioning-env.js +6 -0
- package/dist/src/isolation/runner.d.ts +20 -0
- package/dist/src/isolation/runner.js +1881 -0
- package/dist/src/isolation/runtime-binary-build.d.ts +88 -0
- package/dist/src/isolation/runtime-binary-build.js +480 -0
- package/dist/src/isolation/shared.d.ts +29 -0
- package/dist/src/isolation/shared.js +283 -0
- package/dist/src/isolation/toolchain.d.ts +71 -0
- package/dist/src/isolation/toolchain.js +1348 -0
- package/dist/src/isolation/types.d.ts +15 -0
- package/dist/src/isolation/types.js +1 -0
- package/dist/src/isolation/worktree.d.ts +22 -0
- package/dist/src/isolation/worktree.js +353 -0
- package/dist/src/native-extract.d.ts +2 -0
- package/dist/src/native-extract.js +44 -0
- package/dist/src/plugin.d.ts +2 -2
- package/dist/src/plugin.js +4219 -19
- package/dist/src/runtime-config.d.ts +3 -0
- package/dist/src/runtime-config.js +215 -0
- package/dist/src/runtime-native-sidecar.d.ts +8 -0
- package/dist/src/runtime-native-sidecar.js +368 -0
- package/dist/src/runtime-native.d.ts +51 -0
- package/dist/src/runtime-native.js +485 -0
- package/dist/src/sandbox/backend-bwrap.d.ts +20 -0
- package/dist/src/sandbox/backend-bwrap.js +268 -0
- package/dist/src/sandbox/backend-none.d.ts +11 -0
- package/dist/src/sandbox/backend-none.js +20 -0
- package/dist/src/sandbox/backend-seatbelt.d.ts +13 -0
- package/dist/src/sandbox/backend-seatbelt.js +225 -0
- package/dist/src/sandbox/backend.d.ts +117 -0
- package/dist/src/sandbox/backend.js +864 -0
- package/dist/src/sandbox/orchestrator.d.ts +21 -0
- package/dist/src/sandbox/orchestrator.js +895 -0
- package/dist/src/sandbox/utils.d.ts +43 -0
- package/dist/src/sandbox/utils.js +94 -0
- package/dist/src/service.d.ts +10 -5
- package/dist/src/service.js +4145 -2
- package/dist/src/sidecar-arg.d.ts +7 -0
- package/dist/src/sidecar-arg.js +6 -0
- package/dist/src/sidecar-entrypoint.d.ts +9 -0
- package/dist/src/sidecar-entrypoint.js +401 -0
- package/dist/src/snapshot-sidecar.d.ts +2 -0
- package/dist/src/snapshot-sidecar.js +566 -0
- package/dist/src/snapshot.d.ts +64 -0
- package/dist/src/snapshot.js +515 -0
- package/dist/src/task-run-snapshot.d.ts +26 -0
- package/dist/src/task-run-snapshot.js +713 -0
- package/native/darwin-arm64/rig-git +0 -0
- package/native/darwin-arm64/rig-git.build-manifest.json +4 -0
- package/native/darwin-arm64/runtime-native.dylib +0 -0
- package/native/darwin-x64/rig-git +0 -0
- package/native/darwin-x64/runtime-native.dylib +0 -0
- package/native/linux-arm64/rig-git +0 -0
- package/native/linux-arm64/runtime-native.so +0 -0
- package/native/linux-x64/rig-git +0 -0
- package/native/linux-x64/runtime-native.so +0 -0
- package/native/win32-x64/rig-git.exe +0 -0
- package/native/win32-x64/runtime-native.dll +0 -0
- package/package.json +45 -5
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/isolation-plugin",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.158",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "First-party runtime-isolation backend capability plugin for Rig (swappable worktree/sandbox provisioning).",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
-
"README.md"
|
|
9
|
+
"README.md",
|
|
10
|
+
"native"
|
|
10
11
|
],
|
|
11
12
|
"exports": {
|
|
12
13
|
".": {
|
|
@@ -20,6 +21,46 @@
|
|
|
20
21
|
"./index": {
|
|
21
22
|
"types": "./dist/src/index.d.ts",
|
|
22
23
|
"import": "./dist/src/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./isolation/provisioning-env": {
|
|
26
|
+
"types": "./dist/src/isolation/provisioning-env.d.ts",
|
|
27
|
+
"import": "./dist/src/isolation/provisioning-env.js"
|
|
28
|
+
},
|
|
29
|
+
"./isolation": {
|
|
30
|
+
"types": "./dist/src/isolation/index.d.ts",
|
|
31
|
+
"import": "./dist/src/isolation/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./image": {
|
|
34
|
+
"types": "./dist/src/image.d.ts",
|
|
35
|
+
"import": "./dist/src/image.js"
|
|
36
|
+
},
|
|
37
|
+
"./image-fingerprint-sidecar": {
|
|
38
|
+
"types": "./dist/src/image-fingerprint-sidecar.d.ts",
|
|
39
|
+
"import": "./dist/src/image-fingerprint-sidecar.js"
|
|
40
|
+
},
|
|
41
|
+
"./snapshot": {
|
|
42
|
+
"types": "./dist/src/snapshot.d.ts",
|
|
43
|
+
"import": "./dist/src/snapshot.js"
|
|
44
|
+
},
|
|
45
|
+
"./snapshot-sidecar": {
|
|
46
|
+
"types": "./dist/src/snapshot-sidecar.d.ts",
|
|
47
|
+
"import": "./dist/src/snapshot-sidecar.js"
|
|
48
|
+
},
|
|
49
|
+
"./task-run-snapshot": {
|
|
50
|
+
"types": "./dist/src/task-run-snapshot.d.ts",
|
|
51
|
+
"import": "./dist/src/task-run-snapshot.js"
|
|
52
|
+
},
|
|
53
|
+
"./runtime-native": {
|
|
54
|
+
"types": "./dist/src/runtime-native.d.ts",
|
|
55
|
+
"import": "./dist/src/runtime-native.js"
|
|
56
|
+
},
|
|
57
|
+
"./runtime-native-sidecar": {
|
|
58
|
+
"types": "./dist/src/runtime-native-sidecar.d.ts",
|
|
59
|
+
"import": "./dist/src/runtime-native-sidecar.js"
|
|
60
|
+
},
|
|
61
|
+
"./sidecar-entrypoint": {
|
|
62
|
+
"types": "./dist/src/sidecar-entrypoint.d.ts",
|
|
63
|
+
"import": "./dist/src/sidecar-entrypoint.js"
|
|
23
64
|
}
|
|
24
65
|
},
|
|
25
66
|
"engines": {
|
|
@@ -29,8 +70,7 @@
|
|
|
29
70
|
"module": "./dist/src/index.js",
|
|
30
71
|
"types": "./dist/src/index.d.ts",
|
|
31
72
|
"dependencies": {
|
|
32
|
-
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.
|
|
33
|
-
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.
|
|
34
|
-
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.157"
|
|
73
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.158",
|
|
74
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.158"
|
|
35
75
|
}
|
|
36
76
|
}
|