@ricsam/isolate-daemon 0.1.17 → 0.1.19

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/isolate-daemon",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "type": "module"
5
5
  }
@@ -132,6 +132,7 @@ export interface StreamSession {
132
132
  bytesTransferred: number;
133
133
  credit: number;
134
134
  creditResolver?: () => void;
135
+ cancelReader?: () => void;
135
136
  }
136
137
  /**
137
138
  * Stream receiver for collecting uploaded stream chunks.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/isolate-daemon",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "main": "./dist/cjs/index.cjs",
5
5
  "types": "./dist/types/index.d.ts",
6
6
  "exports": {
@@ -24,12 +24,12 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@ricsam/isolate-protocol": "*",
28
- "@ricsam/isolate-runtime": "*",
29
- "@ricsam/isolate-transform": "*",
30
- "@ricsam/isolate-fs": "*",
31
- "@ricsam/isolate-test-environment": "*",
32
- "@ricsam/isolate-playwright": "*",
27
+ "@ricsam/isolate-protocol": "0.1.17",
28
+ "@ricsam/isolate-runtime": "0.1.19",
29
+ "@ricsam/isolate-transform": "0.1.5",
30
+ "@ricsam/isolate-fs": "0.1.16",
31
+ "@ricsam/isolate-test-environment": "0.1.16",
32
+ "@ricsam/isolate-playwright": "0.1.17",
33
33
  "playwright": "^1"
34
34
  },
35
35
  "author": "ricsam <oss@ricsam.dev>",