-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * Updated to latest effect impl * Fixed all tests * Fixed issue, forgot to invert Either generic params * Fixed circular build step using effect-ts as example * Removed unused scripts, fixed docgen, remove generated docs * Updated effect, changed imports for better tree shaking * Fixed lint issue * Updated effect peer dependency * Fixed build (looked at effect-ts repo packages * Fix issue with incorrect internal reference * Forgot .js in local import statement * Fixed doc generation in github workflow --------- Co-authored-by: Joep Joosten <[email protected]>
- Loading branch information
1 parent
c980719
commit 72ae8a1
Showing
47 changed files
with
7,002 additions
and
10,247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
{ | ||
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:16", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:22", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint" | ||
] | ||
} | ||
}, | ||
"initializeCommand": "npm install -g pnpm && pnpm install && pnpm run build" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ yarn-error.log | |
tmp/ | ||
build/ | ||
dist/ | ||
docs/ | ||
.cache/ | ||
.direnv/ | ||
.idea/ | ||
.pnpm-store/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
{ | ||
"$schema": "node_modules/@effect/docgen/schema.json", | ||
"exclude": ["src/internal_effect_untraced/**/*.ts"], | ||
"theme": "mikearnaldi/just-the-docs", | ||
"parseCompilerOptions": { | ||
"strict": true, | ||
"noEmit": true, | ||
"target": "ES2021", | ||
"lib": ["ES2021"], | ||
"paths": { | ||
"@effect/parser": ["./src/index.ts"], | ||
"@effect/parser/test/*": ["./test/*"], | ||
"@effect/parser/examples/*": ["./examples/*"], | ||
"@effect/parser/*": ["./src/*"] | ||
} | ||
}, | ||
"examplesCompilerOptions": { | ||
"strict": true, | ||
"noEmit": true, | ||
"target": "ES2021", | ||
"lib": ["ES2021"], | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"moduleResolution": "Bundler", | ||
"module": "ES2022", | ||
"target": "ES2022", | ||
"lib": ["ES2022", "DOM"], | ||
"paths": { | ||
"@effect/parser": ["../../src/index.ts"], | ||
"@effect/parser/test/*": ["../../test/*"], | ||
"@effect/parser/examples/*": ["../../examples/*"], | ||
"@effect/parser/*": ["../../src/*"] | ||
"@effect/parser": ["../../src/index.js"], | ||
"@effect/parser/test/*": ["../../test/*.js"], | ||
"@effect/parser/examples/*": ["../../examples/*.js"], | ||
"@effect/parser/*": ["../../src/*.js"] | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.