effect
effect copied to clipboard
Build production-ready applications in TypeScript
# Summary The user is using Effect Platform and has a question about the `fs.stat` function. They noticed that the function always follows symbolic links, which causes the `isSymbolicLink` function...
Proposal for https://github.com/Effect-TS/effect/issues/2014
### What version of Effect is running? effect@npm:2.0.0-next.62 ### What steps can reproduce the bug? Follow the βminigitβ example in README and invoke the command. ### What is the expected...
### What is the problem this feature would solve? https://github.com/Effect-TS/effect/pull/1884 introduced support for cron expressions. However, there's currently no way to specificy a time zone that the cron schedule should...
### What is the problem this feature would solve? There's currently no equivalent of `rm -rf` available in the `FileSystem` API. ### What is the feature you are proposing to...
## π Bug report ### Current Behavior Running `tsc` for any code using `@effect/schema` library version `0.9.0` results in the following error messages: ``` node_modules/@effect/schema/Schema.d.ts:273:324 - error TS2536: Type 'K_4'...
## π Bug report Is it possible to support extending extending `Schema.lazy` schemas (like Zod): Currently there's runtime error when extending `Schema.lazy` schemas, for example: ```ts // @ts-expect-error const sA...
## π Bug report ### Reproducible example ```ts import * as S from '@effect/schema/Schema' declare const s: S.Schema | S.Schema const x: S.Schema = s // error :) const y...
## π Feature request ### Current Behavior You often need to use an array of structs to describe your data, e.g. an array of users or posts. You may then...
## π Feature request ### Current Behavior With S.literal, you can create a schema that validates a string belongs to a set of strings known at compile-time. But sometimes, the...