@effect/platform 0.48.10 → 0.48.12
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/dts/FileSystem.d.ts +1 -1
- package/package.json +2 -2
- package/src/FileSystem.ts +1 -1
package/dist/dts/FileSystem.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export interface FileSystem {
|
|
|
157
157
|
*/
|
|
158
158
|
readonly utimes: (path: string, atime: Date | number, mtime: Date | number) => Effect.Effect<void, PlatformError>;
|
|
159
159
|
/**
|
|
160
|
-
* Watch a directory for changes
|
|
160
|
+
* Watch a directory or file for changes
|
|
161
161
|
*/
|
|
162
162
|
readonly watch: (path: string) => Stream<WatchEvent, PlatformError>;
|
|
163
163
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/platform",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.12",
|
|
4
4
|
"description": "Unified interfaces for common platform-specific services",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"path-browserify": "^1.0.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@effect/schema": "^0.64.
|
|
19
|
+
"@effect/schema": "^0.64.8",
|
|
20
20
|
"effect": "^2.4.9"
|
|
21
21
|
},
|
|
22
22
|
"main": "./dist/cjs/index.js",
|
package/src/FileSystem.ts
CHANGED
|
@@ -231,7 +231,7 @@ export interface FileSystem {
|
|
|
231
231
|
mtime: Date | number
|
|
232
232
|
) => Effect.Effect<void, PlatformError>
|
|
233
233
|
/**
|
|
234
|
-
* Watch a directory for changes
|
|
234
|
+
* Watch a directory or file for changes
|
|
235
235
|
*/
|
|
236
236
|
readonly watch: (path: string) => Stream<WatchEvent, PlatformError>
|
|
237
237
|
/**
|