effect icon indicating copy to clipboard operation
effect copied to clipboard

Build production-ready applications in TypeScript

Results 479 effect issues
Sort by recently updated
recently updated
newest added

# 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

schema

### 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...

bug
cli

### 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...

enhancement

### 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...

enhancement
platform

## πŸ› 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'...

schema

## πŸ› 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...

schema

## πŸ› 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...

schema

## πŸš€ 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...

schema

## πŸš€ 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...

schema