effect 2.0.0-next.31 → 2.0.0-next.32

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  Welcome to Effect, a powerful TypeScript framework that provides a fully-fledged functional effect system with a rich standard library.
4
4
 
5
+ # Requirements
6
+
7
+ - TypeScript 5.0 or newer
8
+ - The `strict` flag enabled in your `tsconfig.json` file
9
+
10
+ ```
11
+ {
12
+ // ...
13
+ "compilerOptions": {
14
+ // ...
15
+ "strict": true,
16
+ }
17
+ }
18
+ ```
19
+
5
20
  ## Documentation
6
21
 
7
22
  For detailed information and usage examples, please visit the [Effect website](https://www.effect.website/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect",
3
- "version": "2.0.0-next.31",
3
+ "version": "2.0.0-next.32",
4
4
  "description": "Functional programming in TypeScript",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -35,15 +35,15 @@
35
35
  "sideEffects": [],
36
36
  "author": "Michael Arnaldi <ma@matechs.com>",
37
37
  "dependencies": {
38
- "@effect/data": "^0.18.4",
39
- "@effect/io": "^0.40.0",
38
+ "@effect/data": "^0.18.5",
39
+ "@effect/io": "^0.40.1",
40
40
  "@effect/match": "^0.35.2",
41
41
  "@effect/stm": "^0.24.0",
42
42
  "@effect/stream": "^0.36.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "@effect/data": "^0.18.4",
46
- "@effect/io": "^0.40.0",
45
+ "@effect/data": "^0.18.5",
46
+ "@effect/io": "^0.40.1",
47
47
  "@effect/match": "^0.35.2",
48
48
  "@effect/stm": "^0.24.0",
49
49
  "@effect/stream": "^0.36.0"